paintSkip() public méthode

Prints the message for skipping tests.
public paintSkip ( string $message )
$message string Text of skip condition.
 /**
  * Called when a skip needs to be output.
  */
 function paintSkip($message)
 {
     // Explicitly call grandparent, not parent::paintFail.
     SimpleScorer::paintSkip($message);
     $this->_paintPassFail('skip', $message);
 }