Files

13 lines
255 B
PHP
Raw Permalink Normal View History

2021-04-07 19:25:18 -04:00
<?php
use PHPUnit\Framework\TestCase;
class CoverageMethodOneLineAnnotationTest extends TestCase
{
/** @covers CoveredClass::publicMethod */
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}