mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-09 19:52:28 +01:00
18 lines
407 B
PHP
18 lines
407 B
PHP
<?php
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class TestCase extends Laravel\Lumen\Testing\TestCase
|
|
{
|
|
/**
|
|
* Creates the application.
|
|
*
|
|
* @return \Laravel\Lumen\Application
|
|
*/
|
|
use DatabaseTransactions;
|
|
|
|
public function createApplication() {
|
|
return require __DIR__.'/../bootstrap/app.php';
|
|
}
|
|
}
|