19 lines
297 B
PHP
19 lines
297 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||
|
|
use App\Models\Organiser;
|
||
|
|
|
||
|
|
class EventTest extends TestCase
|
||
|
|
{
|
||
|
|
|
||
|
|
public function testCreateEvent()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|