コード例 #1
0
ファイル: DebugTest.php プロジェクト: omusico/home365
 public function testDebugInvestigate()
 {
     Debug::investigate($this->mockService);
     // Has prefix?
     $this->expectOutputRegex('/DEBUG/');
     // Has fully-qualified classname?
     $this->expectOutputRegex('/OpenCloud\\\\Tests\\\\MockService/');
     // Has name of parent class?
     $this->expectOutputRegex('/OpenCloud\\\\ObjectStore\\\\Service/');
 }
コード例 #2
0
ファイル: Base.php プロジェクト: omusico/home365
 /**
  * Displays a debug message if $RAXSDK_DEBUG is TRUE
  *
  * The primary parameter is a string in sprintf() format, and it can accept
  * up to five optional parameters. It prints the debug message, prefixed
  * with "Debug:" and the class name, to the standard output device.
  *
  * Example:
  *   `$this->debug('Starting execution of %s', get_class($this))`
  *
  * @param string $msg The message string (required); can be in
  *      sprintf() format.
  * @param mixed $p1 Optional argument to be passed to sprintf()
  * @param mixed $p2 Optional argument to be passed to sprintf()
  * @param mixed $p3 Optional argument to be passed to sprintf()
  * @param mixed $p4 Optional argument to be passed to sprintf()
  * @param mixed $p5 Optional argument to be passed to sprintf()
  * @return void
  *
  * @TODO - change this method name to something more descriptive/accurate
  */
 public function debug()
 {
     if ($this->getDebug() === true || RAXSDK_DEBUG === true) {
         return Debug::logMessage($this, func_get_args());
     }
 }