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.

CoverageTwoDefaultClassAnnotations.php 330B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @coversDefaultClass \NamespaceOne
  4. * @coversDefaultClass \AnotherDefault\Name\Space\Does\Not\Work
  5. */
  6. class CoverageTwoDefaultClassAnnotations
  7. {
  8. /**
  9. * @covers Foo\CoveredClass::<public>
  10. */
  11. public function testSomething()
  12. {
  13. $o = new Foo\CoveredClass;
  14. $o->publicMethod();
  15. }
  16. }