2015-02-05 21:39:52 -06:00
|
|
|
<?php
|
2015-02-11 00:35:10 -06:00
|
|
|
/**
|
|
|
|
* Class TestCase
|
|
|
|
*/
|
|
|
|
class TestCase extends Illuminate\Foundation\Testing\TestCase
|
|
|
|
{
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
/**
|
|
|
|
* Creates the application.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Foundation\Application
|
|
|
|
*/
|
|
|
|
public function createApplication()
|
|
|
|
{
|
2015-03-13 02:44:07 -05:00
|
|
|
$app = require __DIR__ . '/../bootstrap/app.php';
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
return $app;
|
|
|
|
}
|
2015-02-05 21:39:52 -06:00
|
|
|
|
2015-03-31 12:21:49 -05:00
|
|
|
/**
|
|
|
|
* @param string $class
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function mock($class)
|
|
|
|
{
|
|
|
|
$mock = Mockery::mock($class);
|
|
|
|
|
|
|
|
$this->app->instance($class, $mock);
|
|
|
|
|
|
|
|
return $mock;
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:39:52 -06:00
|
|
|
}
|