Added 'default' color

This commit is contained in:
Joshua Thijssen 2015-07-09 10:53:40 +02:00 committed by Fabien Potencier
parent 5ec123fc60
commit c4bf2e637c
2 changed files with 8 additions and 0 deletions

View File

@ -29,6 +29,7 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
'magenta' => 35,
'cyan' => 36,
'white' => 37,
'default' => 39,
);
private static $availableBackgroundColors = array(
'black' => 40,
@ -39,6 +40,7 @@ class OutputFormatterStyle implements OutputFormatterStyleInterface
'magenta' => 45,
'cyan' => 46,
'white' => 47,
'default' => 49,
);
private static $availableOptions = array(
'bold' => 1,

View File

@ -37,6 +37,9 @@ class OutputFormatterStyleTest extends \PHPUnit_Framework_TestCase
$style->setForeground('blue');
$this->assertEquals("\033[34mfoo\033[0m", $style->apply('foo'));
$style->setForeground('default');
$this->assertEquals("\033[39mfoo\033[39m", $style->apply('foo'));
$this->setExpectedException('InvalidArgumentException');
$style->setForeground('undefined-color');
}
@ -51,6 +54,9 @@ class OutputFormatterStyleTest extends \PHPUnit_Framework_TestCase
$style->setBackground('yellow');
$this->assertEquals("\033[43mfoo\033[0m", $style->apply('foo'));
$style->setBackground('default');
$this->assertEquals("\033[49mfoo\033[49m", $style->apply('foo'));
$this->setExpectedException('InvalidArgumentException');
$style->setBackground('undefined-color');
}