1: <?php
2:
3: class TestCase extends Illuminate\Foundation\Testing\TestCase {
4:
5: /**
6: * Creates the application.
7: *
8: * @return \Symfony\Component\HttpKernel\HttpKernelInterface
9: */
10: public function createApplication()
11: {
12: $unitTesting = true;
13:
14: $testEnvironment = 'testing';
15:
16: return require __DIR__.'/../../bootstrap/start.php';
17: }
18:
19: }
20: