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