1234567891011121314151617 |
- <?php
-
- class ExampleTest extends TestCase {
-
- /**
- * A basic functional test example.
- *
- * @return void
- */
- public function testBasicExample()
- {
- $response = $this->call('GET', '/');
-
- $this->assertEquals(200, $response->getStatusCode());
- }
-
- }
|