2018-10-04 16:00:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature;
|
|
|
|
|
|
|
|
use Tests\TestCase;
|
2019-01-31 01:39:51 +00:00
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
2019-11-11 02:45:59 +00:00
|
|
|
use App\User;
|
2018-10-04 16:00:15 +00:00
|
|
|
|
|
|
|
class LoginTest extends TestCase
|
|
|
|
{
|
2021-02-13 05:50:46 +00:00
|
|
|
/** @test */
|
|
|
|
public function view_login_page()
|
|
|
|
{
|
|
|
|
$response = $this->get('login');
|
2018-10-04 16:00:15 +00:00
|
|
|
|
2021-02-13 05:50:46 +00:00
|
|
|
$response->assertSee('Forgot Password');
|
|
|
|
}
|
2018-10-04 16:00:15 +00:00
|
|
|
}
|