Files
firefly-iii/app/tests/TestCase.php

30 lines
533 B
PHP
Raw Normal View History

2014-06-28 09:41:44 +02:00
<?php
2014-07-03 09:16:17 +02:00
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
2014-06-28 09:41:44 +02:00
2014-07-03 09:16:17 +02:00
/**
* Creates the application.
*
* @return \Symfony\Component\HttpKernel\HttpKernelInterface
*/
public function createApplication()
{
$unitTesting = true;
2014-06-28 09:41:44 +02:00
2014-07-03 09:16:17 +02:00
$testEnvironment = 'testing';
2014-06-28 09:41:44 +02:00
2014-07-03 09:16:17 +02:00
return require __DIR__ . '/../../bootstrap/start.php';
}
public function mock($class)
{
$mock = Mockery::mock($class);
$this->app->instance($class, $mock);
return $mock;
}
2014-06-28 09:41:44 +02:00
}