0
0
mirror of https://github.com/sp-tarkov/db-website.git synced 2025-02-08 10:50:46 -05:00
db-website/api/tests/TestCase.php

17 lines
314 B
PHP
Raw Normal View History

2023-03-02 20:51:47 -05: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';
}
}