12345678910111213141516171819202122 |
- <?php
- use Laravel\Lumen\Testing\DatabaseMigrations;
- use Laravel\Lumen\Testing\DatabaseTransactions;
- class ExampleTest extends TestCase
- {
- /**
- * A basic test example.
- *
- * @return void
- */
- public function testExample()
- {
- $this->get('/');
- $this->assertEquals(
- $this->app->version(), $this->response->getContent()
- );
- }
- }
|