TestCase.php 334 B

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