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 254B

1234567891011121314151617
  1. <?php
  2. class ExampleTest extends TestCase {
  3. /**
  4. * A basic functional test example.
  5. *
  6. * @return void
  7. */
  8. public function testBasicExample()
  9. {
  10. $response = $this->call('GET', '/');
  11. $this->assertEquals(200, $response->getStatusCode());
  12. }
  13. }