mirror of
https://github.com/t404owo/t404null.git
synced 2025-12-14 02:48:47 +00:00
19 lines
331 B
PHP
19 lines
331 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();
|
|
}
|
|
|
|
}
|