mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-06 15:04:01 +09: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();
|
|
}
|
|
}
|