lodfe/tests/TestCase.php

17 lines
314 B
PHP
Raw Permalink Normal View History

2020-01-19 21:24:54 +09:00
<?php
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';
}
}