/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php
https://bitbucket.org/alan_cordova/api-sb-map · PHP · 12 lines · 9 code · 0 blank · 3 comment · 0 complexity · 65d34371a30cf070c32af9e748057cd7 MD5 · raw file
- <?php
- class NamespaceCoverageMethodTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @covers Foo\CoveredClass::publicMethod
- */
- public function testSomething()
- {
- $o = new Foo\CoveredClass;
- $o->publicMethod();
- }
- }