diff options
Diffstat (limited to 'tests/ExampleTest.php')
-rw-r--r-- | tests/ExampleTest.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php index 67c9299..2f2d20f 100644 --- a/tests/ExampleTest.php +++ b/tests/ExampleTest.php @@ -1,15 +1,19 @@ <?php +use Illuminate\Foundation\Testing\WithoutMiddleware; +use Illuminate\Foundation\Testing\DatabaseMigrations; +use Illuminate\Foundation\Testing\DatabaseTransactions; + class ExampleTest extends TestCase { /** - * A basic test example. + * A basic functional test example. * * @return void */ public function testBasicExample() { $this->visit('/') - ->see('Lumen.'); + ->see('Laravel'); } } |