Dashboard sipadu mbip
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.

CoverageNothingTest.php 273B

123456789101112131415
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. class CoverageNothingTest extends TestCase
  4. {
  5. /**
  6. * @covers CoveredClass::publicMethod
  7. * @coversNothing
  8. */
  9. public function testSomething()
  10. {
  11. $o = new CoveredClass;
  12. $o->publicMethod();
  13. }
  14. }