hypothetical/tests/Feature/ExampleTest.php

22 lines
339 B
PHP
Raw Normal View History

<?php
2017-01-26 19:17:37 -05:00
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
2019-10-31 17:24:53 -04:00
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
2017-01-26 19:17:37 -05:00
* A basic test example.
*
* @return void
*/
2021-04-20 17:11:13 -04:00
public function test_example()
{
2017-01-26 19:17:37 -05:00
$response = $this->get('/');
$response->assertStatus(200);
}
}