1
0
Files
2020-08-06 15:36:28 +08:00

12 lines
190 B
PHP

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