/**
  * @group EricssonLifeCycleInt
  */
 public function testChangeStateCost()
 {
     if ($this->_user->getId()) {
         $this->_user->delete();
     }
     $this->_user = $this->_createAuthUser(array('userName' => 'LifeCycleUserIntegrationTest1-' . microtime(true), 'organizationId' => 'customer-the_second_customer2222222222222'));
     $data = array('subscription_id' => array('id' => '34609100100', 'id_type' => 'MSISDN'), 'old_state' => 'INACTIVE_NEW', 'new_state' => 'ACTIVE');
     $result = $this->lifecycleMapper->getChangeCost($data, 'customer-the_second_customer2222222222222');
     $this->assertEquals(500, $result);
 }