firefly-iii/app/tests/TestCase.php

18 lines
398 B
PHP
Raw Normal View History

2014-06-28 02:41:44 -05:00
<?php
2014-08-10 11:22:42 -05:00
/**
* Class TestCase
*/
class TestCase extends Illuminate\Foundation\Testing\TestCase {
2014-07-03 02:16:17 -05:00
/**
* Creates the application.
*
* @return \Symfony\Component\HttpKernel\HttpKernelInterface
*/
public function createApplication()
{
$unitTesting = true;
$testEnvironment = 'testing';
return require __DIR__.'/../../bootstrap/start.php';
}
}