コード例 #1
0
ファイル: OutputTest.php プロジェクト: rooster/symfony
 public function testSetStyle()
 {
     Output::setStyle('FOO', array('bg' => 'red', 'fg' => 'yellow', 'blink' => true));
     $this->assertEquals(array('bg' => 'red', 'fg' => 'yellow', 'blink' => true), TestOutput::getStyle('foo'), '::setStyle() sets a new style');
 }