mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-01-17 10:02:02 +08:00
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();
|
|
}
|
|
}
|