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.

CoverageNotPublicTest.php 250B

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