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

PartialMockTestClass.php (261B)


      1 <?php
      2 class PartialMockTestClass
      3 {
      4     public $constructorCalled = FALSE;
      5 
      6     public function __construct()
      7     {
      8         $this->constructorCalled = TRUE;
      9     }
     10 
     11     public function doSomething()
     12     {
     13     }
     14 
     15     public function doAnotherThing()
     16     {
     17     }
     18 }