3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-08 13:35:35 +00:00
Files
snipe-it/tests/Feature/Notifications/Email/EmailNotificationsUponCheckoutTest.php
Marcus Moore e954e066b4 Scaffold tests
2025-05-13 17:41:19 -07:00

16 lines
341 B
PHP

<?php
namespace Tests\Feature\Notifications\Email;
use PHPUnit\Framework\Attributes\Group;
use Tests\TestCase;
#[Group('notifications')]
class EmailNotificationsUponCheckoutTest extends TestCase
{
public function testAdminCCEmailStillSentWhenCategoryEmailIsNotSetToSendEmailToUser()
{
$this->markTestIncomplete();
}
}