2021-07-16 19:44:40 +01:00

12 lines
190 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class CoverageNoneTest extends TestCase
{
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}