You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
517 B
21 lines
517 B
<?php
|
|
/**
|
|
* @coversDefaultClass \Foo\CoveredClass
|
|
*/
|
|
class NamespaceCoverageCoversClassTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers ::privateMethod
|
|
* @covers ::protectedMethod
|
|
* @covers ::publicMethod
|
|
* @covers \Foo\CoveredParentClass::privateMethod
|
|
* @covers \Foo\CoveredParentClass::protectedMethod
|
|
* @covers \Foo\CoveredParentClass::publicMethod
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
$o = new Foo\CoveredClass;
|
|
$o->publicMethod();
|
|
}
|
|
}
|