File "NamespaceCoverageMethodTest.php"

Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php
File size: 252 bytes
MIME-type: --
Charset: utf-8

<?php
class NamespaceCoverageMethodTest extends PHPUnit_Framework_TestCase
{
    /**
     * @covers Foo\CoveredClass::publicMethod
     */
    public function testSomething()
    {
        $o = new Foo\CoveredClass;
        $o->publicMethod();
    }
}