1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/TestCase.php

20 lines
334 B
PHP
Raw Normal View History

2015-03-12 01:44:39 +01:00
<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase {
/**
* Creates the application.
*
* @return Symfony\Component\HttpKernel\HttpKernelInterface
2015-03-12 01:44:39 +01:00
*/
public function createApplication()
{
$unitTesting = true;
2015-03-12 01:44:39 +01:00
$testEnvironment = 'testing';
2015-03-12 01:44:39 +01:00
return require __DIR__.'/../../bootstrap/start.php';
2015-03-12 01:44:39 +01:00
}
}