c3lf-system-3/tests/TestCase.php
Jan Felix Wiebe 3838496c84 init
2019-11-14 23:18:57 +01:00

14 lines
279 B
PHP

<?php
abstract class TestCase extends Laravel\Lumen\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}