13 lines
254 B
PHP
13 lines
254 B
PHP
<?php
|
|
class NamespaceCoverageProtectedTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers Foo\CoveredClass::<protected>
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
$o = new Foo\CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
}
|