File "NamespaceCoverageNotPrivateTest.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPrivateTest.php
File size: 254 bytes
MIME-type: --
Charset: utf-8
<?php
class NamespaceCoverageNotPrivateTest extends PHPUnit_Framework_TestCase
{
/**
* @covers Foo\CoveredClass::<!private>
*/
public function testSomething()
{
$o = new Foo\CoveredClass;
$o->publicMethod();
}
}