Update license header in appc-flow-controller file
[appc.git] / appc-config / appc-flow-controller / provider / src / test / java / org / onap / appc / flow / controller / node / FlowControlNodeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.flow.controller.node;
25
26 import static org.mockito.Mockito.mock;
27 import static org.mockito.Mockito.when;
28
29 import com.fasterxml.jackson.databind.ObjectMapper;
30 import java.util.ArrayList;
31 import java.util.HashMap;
32 import java.util.List;
33 import java.util.Map;
34 import org.junit.Assert;
35 import org.junit.Before;
36 import org.junit.Test;
37 import org.onap.appc.flow.controller.dbervices.FlowControlDBService;
38 import org.onap.appc.flow.controller.interfaceData.DependencyInfo;
39 import org.onap.appc.flow.controller.interfaceData.Vnfcs;
40 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
41
42 public class FlowControlNodeTest {
43
44   private FlowControlDBService dbService;
45   private SvcLogicContext ctx;
46   private FlowControlNode flowControlNode;
47   private FlowSequenceGenerator flowSequenceGenerator;
48
49   @Before
50   public void setUp() {
51     ctx = mock(SvcLogicContext.class);
52     dbService = mock(FlowControlDBService.class);
53     flowSequenceGenerator = mock(FlowSequenceGenerator.class);
54
55     flowControlNode = new FlowControlNode(dbService, flowSequenceGenerator);
56   }
57 }