示例#1
0
 public function testRedefineStyle()
 {
     $formatter = new OutputFormatter(true);
     $style = new OutputFormatterStyle('blue', 'white');
     $formatter->setStyle('info', $style);
     $this->assertEquals("some custom msg", $formatter->format('<info>some custom msg</info>'));
 }