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

20 lines
337 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase {
/**
2013-02-22 14:49:15 -05:00
* Creates the application.
*
* @return Symfony\Component\HttpKernel\HttpKernelInterface
*/
public function createApplication()
{
$unitTesting = true;
2013-01-11 15:14:07 -06:00
2013-02-22 14:49:15 -05:00
$testEnvironment = 'testing';
2013-01-11 15:14:07 -06:00
2013-02-22 14:49:15 -05:00
return require __DIR__.'/../../bootstrap/start.php';
}
2013-01-11 15:14:07 -06:00
}