3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-03-01 05:17:45 +00:00
Files
snipe-it/tests/Feature/Notifications/Email/CheckoutResponseEmailTest.php
2025-06-05 14:57:15 -07:00

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