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

20 lines
441 B
PHP

<?php
/**
* The Lumen framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
*/
use Laravel\Lumen\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}