public function testBackground()
 {
     $style = new OutputFormatterStyle();
     $style->setBackground('black');
     $this->assertEquals("", $style->getBeginStyle());
     $this->assertEquals("", $style->getEndStyle());
     $style->setBackground('yellow');
     $this->assertEquals("", $style->getBeginStyle());
     $this->setExpectedException('InvalidArgumentException');
     $style->setBackground('undefined-color');
 }