mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-08 13:35:35 +00:00
16 lines
341 B
PHP
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();
|
|
}
|
|
}
|