first commit
This commit is contained in:
12
vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php
vendored
Normal file
12
vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePublicTest.php
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
class NamespaceCoveragePublicTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @covers Foo\CoveredClass::<public>
|
||||
*/
|
||||
public function testSomething()
|
||||
{
|
||||
$o = new Foo\CoveredClass;
|
||||
$o->publicMethod();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user