Website/items-old/api/tests/ExampleTest.php
Mangiang 16b4cce118
Some checks failed
continuous-integration/drone/push Build is failing
feat: Create new db app
2021-12-17 01:02:12 -05:00

22 lines
390 B
PHP

<?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()
);
}
}