snipe-it/tests/Feature/Notes/CreateNotesTest.php
2025-02-18 16:16:00 -08:00

24 lines
374 B
PHP

<?php
namespace Tests\Feature\Notes;
use Tests\TestCase;
class CreateNotesTest extends TestCase
{
public function testRequiresPermission()
{
$this->markTestIncomplete();
}
public function testValidation()
{
$this->markTestIncomplete();
}
public function testCanCreateNote()
{
$this->markTestIncomplete();
}
}