Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / CoverageNamespacedFunctionTest.php
1 <?php
2 class CoverageNamespacedFunctionTest extends PHPUnit_Framework_TestCase
3 {
4     /**
5      * @covers foo\func()
6      */
7     public function testFunc()
8     {
9         foo\func();
10     }
11 }