mirror of
https://github.com/e107inc/e107.git
synced 2025-10-16 15:26:11 +02: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();
|
|
}
|
|
|
|
}
|