TestCase.php 329 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Test;
  3. use \PHPUnit\Framework\TestCase as BaseTestCase;
  4. class TestCase extends BaseTestCase
  5. {
  6. /**
  7. * setUp
  8. *
  9. * @return void
  10. */
  11. public function setUp(): void {}
  12. /**
  13. * tearDown
  14. *
  15. * @return void
  16. */
  17. public function tearDown(): void {}
  18. }