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