winter/tests/TestCase.php
Samuel Georges 408c06a33f Fixes unit tests for case sensitive file systems
We should be using the class compiler here eventually
2015-07-25 12:29:57 +10:00

23 lines
464 B
PHP

<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
$app['cache']->setDefaultDriver('array');
$app->setLocale('en');
return $app;
}
}