1
0
mirror of https://github.com/v2board/v2board.git synced 2025-02-24 14:20:29 +08:00
2019-10-22 23:39:48 +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);
}
}