2020-08-31 22:20:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature;
|
|
|
|
|
2020-10-21 00:29:50 +00:00
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
2020-08-31 22:20:53 +00:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class OptionsTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A basic feature test example.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testExample()
|
|
|
|
{
|
|
|
|
$response = $this->get('/');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
}
|