gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

NamespaceCoverageClassExtendedTest.php (255B)


      1 <?php
      2 class NamespaceCoverageClassExtendedTest extends PHPUnit_Framework_TestCase
      3 {
      4     /**
      5      * @covers Foo\CoveredClass<extended>
      6      */
      7     public function testSomething()
      8     {
      9         $o = new Foo\CoveredClass;
     10         $o->publicMethod();
     11     }
     12 }