10/31: merge casablanca to master
[so.git] / mso-api-handlers / mso-api-handler-infra / src / test / java / org / onap / so / apihandlerinfra / tasksbeans / TaskVariablesTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.apihandlerinfra.tasksbeans;
22
23 import org.junit.After;
24
25 import static org.junit.Assert.assertEquals;
26 import org.junit.Before;
27 import org.junit.Test;
28
29 import static org.mockito.Mockito.mock;
30 import static org.mockito.Mockito.verify;
31 import static org.mockito.Mockito.when;
32
33 import java.util.List;
34
35 public class TaskVariablesTest {
36
37         TaskVariables _taskVariables;
38         private List<TaskVariableValue> _taskVariableValueList;
39
40         public TaskVariablesTest() {
41         }
42
43         @SuppressWarnings("unchecked")
44         @Before
45         public void setUp() {
46                 _taskVariables = mock(TaskVariables.class);
47                 _taskVariableValueList  = mock(List.class);
48                 when(_taskVariables.getTaskVariables()).thenReturn(_taskVariableValueList);
49         }
50
51         @After
52         public void tearDown() {
53                 _taskVariables = null;
54         }
55
56         @Test
57         public void testGetTaskVariables() {
58                 List<TaskVariableValue> result = _taskVariables.getTaskVariables();
59                 assertEquals(_taskVariableValueList, result);
60
61         }
62
63         @Test
64         public void testSetTaskVariables() {
65                 _taskVariables.setTaskVariables(_taskVariableValueList);
66                 verify(_taskVariables).setTaskVariables(_taskVariableValueList);
67
68         }
69 }