mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
24 lines
374 B
PHP
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();
|
|
}
|
|
}
|