bf1bff8c4c84c8c0a2b7ef35043720fdf858bd9a
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / NamespaceCoveragePublicTest.php
1 <?php
2 class NamespaceCoveragePublicTest extends PHPUnit_Framework_TestCase
3 {
4     /**
5      * @covers Foo\CoveredClass::<public>
6      */
7     public function testSomething()
8     {
9         $o = new Foo\CoveredClass;
10         $o->publicMethod();
11     }
12 }