Files
portal/tests/Feature/ExampleTest.php
T
2022-07-30 09:56:30 +08:00

21 lines
296 B
PHP

<?php
namespace Tests\Feature;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/swagger');
$response->assertStatus(200);
}
}