Файл: gapps/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageCoversClassTest.php
Строк: 10
<?php
/**
* @coversDefaultClass FooCoveredClass
*/
class NamespaceCoverageCoversClassTest extends PHPUnit_Framework_TestCase
{
/**
* @covers ::privateMethod
* @covers ::protectedMethod
* @covers ::publicMethod
* @covers FooCoveredParentClass::privateMethod
* @covers FooCoveredParentClass::protectedMethod
* @covers FooCoveredParentClass::publicMethod
*/
public function testSomething()
{
$o = new FooCoveredClass;
$o->publicMethod();
}
}