Example #1
0
 /**
  * Test the setProteinGene method from the Protein class
  *
  * @uses \bcGen\MainBundle\Entity\Protein::setProteinGene()
  */
 public function testSetProteinGene()
 {
     echo "\n********************Test SetProteinGene()***************************************************\n";
     $this->protein->setProteinGene($this->gene);
     $this->assertEquals($this->gene, $this->protein->getProteinGene());
 }