public function testCreate()
 {
     $data = $this->_spMapper->findOneById(1);
     $this->assertNotNull($data);
     $data = $this->_spMapper->insert($data);
     $this->assertNotNull($data);
 }
 /**
  * @group EricssonInt
  */
 public function testCreate()
 {
     $id = $this->_spMapper->insert($this->_suppServicesPack);
     $this->assertNotNull($id);
     $this->_suppServicesPack->setId($id);
 }