bebeboutik-api/tests/TestCase.php
Christophe LATOUR c88ea57ba5 Initial commit
2017-07-21 16:40:11 +02:00

15 lines
279 B
PHP

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