1
0
mirror of https://github.com/v2board/v2board.git synced 2025-03-13 22:24:46 +08:00

22 lines
340 B
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}