/**
  * Test the setInnerComDesc() method from the InnerCommunication class
  *
  * @uses \bcGen\MainBundle\Entity\Condition::setInnerComDesc()
  */
 public function testSetInnerComDesc()
 {
     echo "\n********************Test SetInnerComDesc()***************************************************\n";
     $this->innerCommunication->setInnerComDesc('setInnerComDesc');
     $this->assertEquals('setInnerComDesc', $this->innerCommunication->getInnerComDesc());
 }