Files
im-demo-server/tests/TestCase.php

19 lines
381 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
2015-02-22 20:47:03 -06:00
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
2015-02-22 20:47:03 -06:00
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
2013-01-11 15:14:07 -06:00
2015-02-22 20:47:03 -06:00
return $app;
}
}