TestCase.php 218 B

12345678910111213141516
  1. <?php
  2. namespace Yansongda\Pay\Tests;
  3. use PHPUnit\Framework\TestCase as PHPUnitTestCase;
  4. class TestCase extends PHPUnitTestCase
  5. {
  6. public function setUp()
  7. {
  8. }
  9. public function tearDown()
  10. {
  11. }
  12. }