TextReporter::paintSkip PHP Method

paintSkip() public method

Prints the message for skipping tests.
public paintSkip ( string $message )
$message string Text of skip condition.
    public function paintSkip($message)
    {
        parent::paintSkip($message);
        print "Skip: {$message}\n";
    }

Usage Example

Example #1
0
 public function paintSkip($message)
 {
     parent::paintSkip(AkAnsiColor::style($message, 'warning'));
 }
All Usage Examples Of TextReporter::paintSkip