You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExampleTest.php 225B

123456789101112131415
  1. <?php
  2. class ExampleTest extends TestCase
  3. {
  4. /**
  5. * A basic test example.
  6. *
  7. * @return void
  8. */
  9. public function testBasicExample()
  10. {
  11. $this->visit('/')
  12. ->see('Lumen.');
  13. }
  14. }