Blame | Last modification | View Log | Download
<?phpclass CoverageNothingTest extends PHPUnit_Framework_TestCase{/*** @covers CoveredClass::publicMethod* @coversNothing*/public function testSomething(){$o = new CoveredClass;$o->publicMethod();}}