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