mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
20 lines
294 B
PHP
20 lines
294 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit;
|
||
|
|
||
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class ExampleTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* A basic test example.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function testBasicTest()
|
||
|
{
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
}
|