Files
salt-minv-graph/tests/Feature/ExampleTest.php
Jaroslav Drzik e2f7d8b5c6 Git inicializacia
2019-11-15 11:03:55 +01:00

22 lines
340 B
PHP

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