spt-items-api/tests/TestCase.php

17 lines
314 B
PHP
Raw Permalink Normal View History

2021-10-08 20:44:34 +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';
}
}