1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-02 10:17:53 +01:00
openstamanager/tests/Feature/ExampleTest.php
2021-02-19 14:39:39 +01:00

21 lines
289 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('/');
$response->assertStatus(200);
}
}