fanatic/tests/Feature/Http/Controllers/SessionsControllerTest.php

23 lines
420 B
PHP
Raw Normal View History

2022-04-24 17:44:39 -07:00
<?php
namespace Tests\Feature\Http\Controllers;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class SessionsControllerTest extends TestCase
{
/**
* A basic feature test example.
*
* @return void
*/
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}