1<?php
2class CoverageNamespacedFunctionTest extends PHPUnit_Framework_TestCase
3{
4    /**
5     * @covers foo\func()
6     */
7    public function testFunc()
8    {
9        foo\func();
10    }
11}
12