2024-10-19 15:10:45 +08:00

25 lines
517 B
PHP

<?php
/**
* The Lumen framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
*/
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()
);
}
}