clrghouz/tests/Feature/ExampleTest.php

22 lines
345 B
PHP
Raw Normal View History

2018-11-15 10:45:49 +00:00
<?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()
{
2021-06-15 12:19:14 +00:00
$response = $this->get('/about');
2018-11-15 10:45:49 +00:00
$response->assertStatus(200);
}
}