This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
HomeIsWhereTheMoneyIs/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageProtectedTest.php
T
2017-05-24 18:35:30 -05:00

13 lines
254 B
PHP
Executable File

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