/**
  * @group EricssonInt
  */
 public function testAddCustomer()
 {
     $this->_suppServicesPack->save();
     $data = $this->_spMapper->publish($this->_suppServicesPack->getId());
     $this->assertNotNull($data);
     $this->assertTrue($data);
     $data = $this->_spMapper->addCustomer($this->_suppServicesPack->getId(), Organization\OrgCustomerModel::ORG_TYPE . '-' . self::CUSTOMER_ID);
     $this->assertNotNull($data);
     $this->assertTrue($data);
 }
 public function testAddCustomer()
 {
     $data = $this->_spMapper->addCustomer(1, 1);
     $this->assertNotNull($data);
     $this->assertTrue($data);
 }