19 lines
332 B
PHP
19 lines
332 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests;
|
||
|
|
||
|
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';
|
||
|
}
|
||
|
}
|