ExampleTest.php 349 B

123456789101112131415161718
  1. <?php
  2. use Illuminate\Foundation\Testing\WithoutMiddleware;
  3. use Illuminate\Foundation\Testing\DatabaseTransactions;
  4. class ExampleTest extends TestCase
  5. {
  6. /**
  7. * A basic functional test example.
  8. *
  9. * @return void
  10. */
  11. public function testBasicExample()
  12. {
  13. $this->visit('/')
  14. ->see('Laravel 5');
  15. }
  16. }