1
0
mirror of https://github.com/v2board/v2board.git synced 2025-03-13 14:14:42 +08:00
2019-10-29 15:33:36 +08:00

22 lines
340 B
PHP
Executable File

<?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);
}
}