Files
tripbuilder/tests/TestCase.php
Richard Morgan 09fa83af8b list trips
add, remove flights
2017-05-14 20:57:30 -04:00

15 lines
279 B
PHP
Executable File

<?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';
}
}