ExampleTest.php 403 Bytes
Newer Older
1 2
<?php

Taylor Otwell committed
3
use Illuminate\Foundation\Testing\WithoutMiddleware;
Taylor Otwell committed
4
use Illuminate\Foundation\Testing\DatabaseMigrations;
Taylor Otwell committed
5 6
use Illuminate\Foundation\Testing\DatabaseTransactions;

Taylor Otwell committed
7 8 9 10 11 12 13 14 15
class ExampleTest extends TestCase
{
    /**
     * A basic functional test example.
     *
     * @return void
     */
    public function testBasicExample()
    {
Taylor Otwell committed
16 17
        $this->visit('/')
             ->see('Laravel 5');
Taylor Otwell committed
18
    }
Graham Campbell committed
19
}