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.

NamespaceCoverageCoversClassPublicTest.php 311B

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