CoverageNothingTest.php 273 B

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. }