暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.unit.stub 263B

123456789101112131415161718
  1. <?php
  2. namespace {{ namespace }};
  3. use PHPUnit\Framework\TestCase;
  4. class {{ class }} extends TestCase
  5. {
  6. /**
  7. * A basic unit test example.
  8. *
  9. * @return void
  10. */
  11. public function testExample()
  12. {
  13. $this->assertTrue(true);
  14. }
  15. }