mirror of
https://github.com/snipe/snipe-it.git
synced 2026-03-01 05:17:45 +00:00
22 lines
575 B
PHP
22 lines
575 B
PHP
<?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();
|
|
}
|
|
}
|