webapp/tests/TestCase.php

15 lines
279 B
PHP
Raw Permalink Normal View History

2018-04-09 21:38:31 +02:00
<?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';
}
}