use of org.onap.so.bpmn.servicedecomposition.tasks.BBInputSetup in project so by onap.
the class VnfEBBLoaderTest method setup.
@Before
public void setup() {
serviceId = "service123";
vnfId = "vnf123";
vfModuleId = "vfModule123";
serviceInstanceAAI = mock(org.onap.aai.domain.yang.ServiceInstance.class);
serviceInstanceMSO = mock(ServiceInstance.class);
bbInputSetupUtils = mock(BBInputSetupUtils.class);
bbInputSetup = mock(BBInputSetup.class);
workflowActionUtils = mock(WorkflowActionExtractResourcesAAI.class);
exceptionBuilder = mock(ExceptionBuilder.class);
delegateExecution = new DelegateExecutionFake();
}
Aggregations