<?php
class NamespaceCoverageNotPrivateTest extends PHPUnit_Framework_TestCase
{
/**
* @covers FooCoveredClass::<!private>
*/
public function testSomething()
{
$o = new FooCoveredClass;
$o->publicMethod();
}
}