Ejemplo n.º 1
0
 /**
  * @param string $methodName
  * @param array  $arguments
  *
  * @return mixed
  */
 public static function __callStatic($methodName, $arguments)
 {
     $rc = self::$generatorMock->invokeInterceptedCall($methodName, $arguments);
     return $rc;
 }
Ejemplo n.º 2
0
 private function __routeAllCallsToTestGeneratorMockObjects($methodName, $arguments)
 {
     $rc = $this->unitTestGeneratorMockObj->invokeInterceptedCall($methodName, $arguments);
     return $rc;
 }