radarrplexorganizrnginxsonarrdashboardembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdall
14 lines
253 B
14 lines
253 B
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CoverageClassExtendedTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers CoveredClass<extended>
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
$o = new CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
}
|
|
|