Use app name

This commit is contained in:
2020-08-31 23:20:53 +01:00
parent 17fb0e236f
commit 1e78a8e6d9
4 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class OptionsTest extends TestCase
{
/**
* A basic feature test example.
*
* @return void
*/
public function testExample()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}