15 lines
250 B
PHP
15 lines
250 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CoverageMethodTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers CoveredClass::publicMethod
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
$o = new CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
}
|