SimpleScorer::paintFail PHP Method

paintFail() public method

Increments the fail count.
public paintFail ( string $message )
$message string Message is ignored.
    public function paintFail($message)
    {
        $this->fails++;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Called when a fail needs to be output.
  */
 function paintFail($message)
 {
     // Explicitly call grandparent, not parent::paintFail.
     SimpleScorer::paintFail($message);
     $this->_paintPassFail('fail', $message, debug_backtrace());
 }
All Usage Examples Of SimpleScorer::paintFail