Scaffold scenarios

This commit is contained in:
Marcus Moore
2025-06-05 14:57:15 -07:00
parent 19b9e50281
commit 063553d4f7

View File

@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature\Notifications\Email;
use Tests\TestCase;
class CheckoutResponseEmailTest extends TestCase
{
public static function scenarios()
{
yield 'Accepting checkout acceptance configured to send alert';
yield 'Declining checkout acceptance configured to send alert';
yield 'Accepting checkout acceptance not configured to send alert';
yield 'Declining checkout acceptance not configured to send alert';
}
public function test_checkout_response_alert()
{
$this->markTestIncomplete();
}
}