gmarche/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageMethodTest...

15 lines
267 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class NamespaceCoverageMethodTest extends TestCase
{
/**
* @covers Foo\CoveredClass::publicMethod
*/
public function testSomething()
{
$o = new Foo\CoveredClass;
$o->publicMethod();
}
}