15 lines
273 B
PHP
15 lines
273 B
PHP
|
<?php
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class NamespaceCoverageNotProtectedTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers Foo\CoveredClass::<!protected>
|
||
|
*/
|
||
|
public function testSomething()
|
||
|
{
|
||
|
$o = new Foo\CoveredClass;
|
||
|
$o->publicMethod();
|
||
|
}
|
||
|
}
|