hypothetical/tests/Feature/ExampleTest.php

22 lines
377 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
*/
2022-05-23 21:01:33 -04:00
public function test_the_application_returns_a_successful_response()
{
2017-01-26 19:17:37 -05:00
$response = $this->get('/');
$response->assertStatus(200);
}
}