/**
  * Test setConflictColor
  */
 public function testSetConflictColorInvalidValue()
 {
     $this->setExpectedException('Exception');
     $instance = new GanttChart();
     $if = $instance->setConflictColor('000000');
     $this->assertInstanceOf('\\Exception', $if);
 }