Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / CoverageTwoDefaultClassAnnotations.php
1 <?php
2
3 /**
4  * @coversDefaultClass \NamespaceOne
5  * @coversDefaultClass \AnotherDefault\Name\Space\Does\Not\Work
6  */
7 class CoverageTwoDefaultClassAnnotations
8 {
9     /**
10      * @covers Foo\CoveredClass::<public>
11      */
12     public function testSomething()
13     {
14         $o = new Foo\CoveredClass;
15         $o->publicMethod();
16     }
17 }