public function testUpdate()
 {
     $data = $this->_spMapper->findOneById(1);
     $this->assertNotNull($data, "Load supplementary service pack");
     $data = $this->_spMapper->update($data);
     $this->assertNotNull($data, "Update supplService");
 }
 /**
  * @group EricssonInt
  */
 public function testDataQuery()
 {
     $this->_suppServicesPack->save();
     /**
      * @var $data \Application\Model\SupplServicesModel
      */
     $data = $this->_spMapper->findOneById($this->_suppServicesPack->getId());
     $this->assertNotNull($data);
     $this->assertNotEmpty($data->getId());
 }