3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-07 07:25:35 +00:00
Files
snipe-it/tests/Feature/Notes/CreateNotesTest.php
Marcus Moore 3d69721af0 Scaffold tests
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();
}
}