Files
spa-api/app/tests/TestCase.php

20 lines
370 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?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';
2013-01-11 15:14:07 -06:00
}
}