2016-02-29 15:59:36 +00:00
|
|
|
<?php
|
2016-04-26 21:33:16 +00:00
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2016-03-05 00:18:10 +00:00
|
|
|
class ExampleTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* A basic functional test example.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function testBasicExample()
|
|
|
|
|
{
|
2016-04-26 21:33:16 +00:00
|
|
|
$this->visit('/')
|
|
|
|
|
->see('Login');
|
2016-03-05 00:18:10 +00:00
|
|
|
}
|
2016-02-29 15:59:36 +00:00
|
|
|
}
|