Files
microservice-products-api/tests/TestCase.php
T
Behzad Babaei 4a59afbf10 initial commit
2020-03-28 16:55:40 +04:30

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