Cachet/tests/TestCase.php

19 lines
372 B
PHP
Raw Normal View History

2014-11-16 22:26:08 +00:00
<?php
2014-12-20 21:20:17 +00:00
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Symfony\Component\HttpKernel\HttpKernelInterface
*/
public function createApplication()
{
$unitTesting = true;
2014-11-16 22:26:08 +00:00
2014-12-20 21:20:17 +00:00
$testEnvironment = 'testing';
2014-11-16 22:26:08 +00:00
return require __DIR__.'/../bootstrap/start.php';
2014-12-20 21:20:17 +00:00
}
}