Scaffold test
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user