You are here

private static property PHPUnit_TextUI_ResultPrinter::$ansiCodes in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php \PHPUnit_TextUI_ResultPrinter::ansiCodes

Type: array

File

vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php, line 33

Class

PHPUnit_TextUI_ResultPrinter
Prints the result of a TextUI TestRunner run.

Code

private static $ansiCodes = array(
  'bold' => 1,
  'fg-black' => 30,
  'fg-red' => 31,
  'fg-green' => 32,
  'fg-yellow' => 33,
  'fg-blue' => 34,
  'fg-magenta' => 35,
  'fg-cyan' => 36,
  'fg-white' => 37,
  'bg-black' => 40,
  'bg-red' => 41,
  'bg-green' => 42,
  'bg-yellow' => 43,
  'bg-blue' => 44,
  'bg-magenta' => 45,
  'bg-cyan' => 46,
  'bg-white' => 47,
);