CoverageMethodTest.php 235 B

12345678910111213
  1. <?php
  2. class CoverageMethodTest extends PHPUnit_Framework_TestCase
  3. {
  4. /**
  5. * @covers CoveredClass::publicMethod
  6. */
  7. public function testSomething()
  8. {
  9. $o = new CoveredClass;
  10. $o->publicMethod();
  11. }
  12. }