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(); + } }