mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-06 15:04:01 +09:00
18 lines
330 B
PHP
18 lines
330 B
PHP
<?php
|
|
/**
|
|
* @coversDefaultClass \NamespaceOne
|
|
* @coversDefaultClass \AnotherDefault\Name\Space\Does\Not\Work
|
|
*/
|
|
class CoverageTwoDefaultClassAnnotations
|
|
{
|
|
/**
|
|
* @covers Foo\CoveredClass::<public>
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
$o = new Foo\CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
|
|
}
|