/**
  * testGetSetEm
  */
 public function testGetSetEm()
 {
     $this->assertNull($this->dataTable->getEm());
     $this->dataTable->setEm($this->em);
     $this->assertEquals($this->em, $this->dataTable->getEm());
     $this->dataTable->setEm(null);
     $this->dataTable->setEm($this->em);
 }