Sebastian Marcet 4d7159e93f OpenstackId resource server
* migration of resource server from openstackid to its
  own project
* migration of marketplace api
* added api tests
* added CORS middleware
* added SecurityHTTPHeadersWriterMiddleware

Change-Id: Ib3d02feeb1e756de73d380238a043a7ac1ec7ecc
2015-08-18 13:48:13 -03:00

47 lines
854 B
PHP

<?php
use Illuminate\Support\Facades\Redis;
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
//services
private $redis = null;
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
//putenv('DB_DEFAULT=sqlite_testing');
$app = require __DIR__.'/../bootstrap/app.php';
$instance = $app->make('Illuminate\Contracts\Console\Kernel');
$app->loadEnvironmentFrom('.env.testing');
$instance->bootstrap();
return $app;
}
public function setUp()
{
parent::setUp();
$this->redis = Redis::connection();
$this->redis->flushall();
$this->prepareForTests();
}
protected function prepareForTests()
{
Artisan::call('migrate');
Mail::pretend(true);
$this->seed('TestSeeder');
}
public function tearDown()
{
parent::tearDown();
}
}