updated camunda springboot version
[so.git] / bpmn / so-bpmn-infrastructure-common / src / test / java / org / onap / so / bpmn / infrastructure / workflow / serviceTask / client / builder / ServiceRpcInputEntityBuilderTest.java
index 4db0421..556ff67 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -24,6 +24,7 @@ import java.util.Collection;
 import java.util.Map;
 import java.util.Set;
 
+import org.camunda.bpm.engine.ProcessEngine;
 import org.camunda.bpm.engine.ProcessEngineServices;
 import org.camunda.bpm.engine.delegate.DelegateExecution;
 import org.camunda.bpm.engine.runtime.Incident;
@@ -35,12 +36,12 @@ import org.junit.Test;
 
 public class ServiceRpcInputEntityBuilderTest {
        ServiceRpcInputEntityBuilder serviceRpcInputEntityBuilder = new ServiceRpcInputEntityBuilder();
-       
+
        DelegateExecution delegateExecution = new DelegateExecution() {
         private String operType;
                private String resourceType;
                private String requestId;
-               
+
        @Override
         public String getProcessInstanceId() {
             return null;
@@ -313,6 +314,18 @@ public class ServiceRpcInputEntityBuilderTest {
         public void removeVariablesLocal() {
 
         }
+
+               @Override
+               public ProcessEngine getProcessEngine(){
+                       // TODO Auto-generated method stub
+                       return null;
+               }
+
+               @Override
+               public void setProcessBusinessKey(String arg0){
+                       // TODO Auto-generated method stub
+
+               }
     };
 
        @Test