Cachet/app/tests/TestCase.php
Graham Campbell 9d8d89248f CS fixes
2014-12-20 21:20:17 +00:00

20 lines
376 B
PHP

<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Symfony\Component\HttpKernel\HttpKernelInterface
*/
public function createApplication()
{
$unitTesting = true;
$testEnvironment = 'testing';
return require __DIR__.'/../../bootstrap/start.php';
}
}