Scaffold test

This commit is contained in:
Marcus Moore
2025-06-05 16:42:31 -07:00
parent bec80b443c
commit df1361aa43
@@ -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();
}
}