2013-01-11 15:14:07 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class TestCase extends Illuminate\Foundation\Testing\TestCase {
|
|
|
|
|
|
2013-02-22 16:47:09 -05:00
|
|
|
/**
|
2013-02-22 14:49:15 -05:00
|
|
|
* Creates the application.
|
|
|
|
|
*
|
2013-07-20 16:32:39 +02:00
|
|
|
* @return \Symfony\Component\HttpKernel\HttpKernelInterface
|
2013-02-22 14:49:15 -05:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2014-08-20 19:36:09 +08:00
|
|
|
return require __DIR__.'/../bootstrap/start.php';
|
2013-02-22 14:49:15 -05:00
|
|
|
}
|
2013-01-11 15:14:07 -06:00
|
|
|
|
2013-02-07 09:12:56 +11:00
|
|
|
}
|