mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
2c696666df
- Moved most files - fixed composer dependencies - Started fixing issues.
20 lines
334 B
PHP
20 lines
334 B
PHP
<?php
|
|
|
|
class TestCase extends Illuminate\Foundation\Testing\TestCase {
|
|
|
|
/**
|
|
* Creates the application.
|
|
*
|
|
* @return Symfony\Component\HttpKernel\HttpKernelInterface
|
|
*/
|
|
public function createApplication()
|
|
{
|
|
$unitTesting = true;
|
|
|
|
$testEnvironment = 'testing';
|
|
|
|
return require __DIR__.'/../../bootstrap/start.php';
|
|
}
|
|
|
|
}
|