From df1361aa43ad198585a348723eafb8b2dcdacd54 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Thu, 5 Jun 2025 16:42:31 -0700 Subject: [PATCH] Scaffold test --- .../Email/CheckoutResponseEmailTest.php | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/tests/Feature/Notifications/Email/CheckoutResponseEmailTest.php b/tests/Feature/Notifications/Email/CheckoutResponseEmailTest.php index 9b4546af81..d43f2c6422 100644 --- a/tests/Feature/Notifications/Email/CheckoutResponseEmailTest.php +++ b/tests/Feature/Notifications/Email/CheckoutResponseEmailTest.php @@ -10,15 +10,7 @@ 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() + public function test_accepting_checkout_acceptance_configured_to_send_alert() { Mail::fake(); @@ -41,4 +33,19 @@ class CheckoutResponseEmailTest extends TestCase return $mail->hasTo($user->email); }); } + + public function test_declining_checkout_acceptance_configured_to_send_alert() + { + $this->markTestIncomplete(); + } + + public function test_accepting_checkout_acceptance_not_configured_to_send_alert() + { + $this->markTestIncomplete(); + } + + public function test_declining_checkout_acceptance_not_configured_to_send_alert() + { + $this->markTestIncomplete(); + } }