TestCase.php 231 B

12345678910111213141516
  1. <?php
  2. namespace Tests;
  3. use PHPUnit\Framework\TestCase as BaseTestCase;
  4. abstract class TestCase extends BaseTestCase
  5. {
  6. use CreatesApplication;
  7. protected function setUp()
  8. {
  9. $this->createApplication();
  10. }
  11. }