23 lines
374 B
PHP
23 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();
|
|
}
|
|
}
|