/**
  * Paint a test skip message
  *
  * @param string $message The message of the skip
  * @return void
  */
 function paintSkip($message)
 {
     parent::paintSkip($message);
     fwrite(STDOUT, 'SKIP' . $this->separator . $message . "\n\n");
 }
示例#2
0
 /**
  * Prints the message for skipping tests.
  *
  * @param string $message Text of skip condition.
  * @return void
  * @access public
  */
 function paintSkip($message)
 {
     parent::paintSkip($message);
     echo "<li class='skipped'>\n";
     echo "<span>Skipped</span> ";
     echo $this->_htmlEntities($message);
     echo "</li>\n";
 }
 /**
  * Prints the message for skipping tests.
  *
  * @param string $message Text of skip condition.
  * @return void
  */
 public function paintSkip($message)
 {
     parent::paintSkip($message);
     echo "Skip: {$message}\n";
 }