SimpleReporterDecorator::paintPass PHP Method

paintPass() public method

Chains to the wrapped reporter.
public paintPass ( string $message )
$message string Message is ignored.
    public function paintPass($message)
    {
        $this->reporter->paintPass($message);
    }

Usage Example

示例#1
0
文件: recorder.php 项目: rpshaw/CDash
 /**
  *    Stashes the pass as a SimpleResultOfPass
  *    for later retrieval.
  *    @param string $message    Pass message to be displayed
  *                              eventually.
  */
 function paintPass($message)
 {
     parent::paintPass($message);
     $this->results[] = new SimpleResultOfPass(parent::getTestList(), $message);
 }