change instance

This commit is contained in:
Taras Machyshyn
2013-11-01 13:49:54 +02:00
commit 417576fd5e
2373 changed files with 284713 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?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();
}
}