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

CoverageMethodOneLineAnnotationTest.php (241B)


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