Merge "Reorder modifiers"
[so.git] / mso-api-handlers / mso-api-handler-infra / src / test / java / org / openecomp / mso / apihandlerinfra / taskbeans / TaskVariableValueTest.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  *\r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.apihandlerinfra.taskbeans;\r
22 \r
23 import org.junit.After;\r
24 import org.junit.Before;\r
25 import org.junit.Test;\r
26 import static org.junit.Assert.*;\r
27 import static org.mockito.Mockito.mock;\r
28 import static org.mockito.Mockito.verify;\r
29 import static org.mockito.Mockito.when;\r
30 import org.openecomp.mso.apihandlerinfra.tasksbeans.TaskVariableValue;\r
31 \r
32 public class TaskVariableValueTest {\r
33         TaskVariableValue _taskVariableValue;\r
34         protected String _name;\r
35         protected String _value;\r
36         protected String _operator;\r
37 \r
38         public TaskVariableValueTest() {\r
39         }\r
40 \r
41         @Before\r
42         public void setUp() {\r
43                 _taskVariableValue = mock(TaskVariableValue.class);\r
44                 _name = "name";\r
45                 _value = "value";\r
46                 _operator = "operator";\r
47                 when(_taskVariableValue.getName()).thenReturn(_name);\r
48                 when(_taskVariableValue.getValue()).thenReturn(_value);\r
49                 when(_taskVariableValue.getOperator()).thenReturn(_operator);\r
50         }\r
51 \r
52         @After\r
53         public void tearDown() {\r
54                 _taskVariableValue = null;\r
55         }\r
56 \r
57         /**\r
58          * Test of getName method\r
59          */\r
60         @Test\r
61         public void testGetName() {\r
62                 _taskVariableValue.setName(_name);\r
63                 assertEquals(_taskVariableValue.getName(),_name);\r
64 \r
65         }\r
66 \r
67         /**\r
68          * Test setName\r
69          */\r
70         @Test\r
71         public void testSetName() {\r
72                 _taskVariableValue.setName(_name);\r
73                 verify(_taskVariableValue).setName(_name);\r
74         }\r
75         \r
76         /**\r
77          * Test of getName method\r
78          */\r
79         @Test\r
80         public void testGetValue() {\r
81                 _taskVariableValue.setValue(_value);\r
82                 assertEquals(_taskVariableValue.getValue(),_value);\r
83 \r
84         }\r
85 \r
86         /**\r
87          * Test setName\r
88          */\r
89         @Test\r
90         public void testSetValue() {\r
91                 _taskVariableValue.setValue(_value);\r
92                 verify(_taskVariableValue).setValue(_value);\r
93         }\r
94         \r
95         /**\r
96          * Test of getName method\r
97          */\r
98         @Test\r
99         public void testGetOperator() {\r
100                 _taskVariableValue.setOperator(_operator);\r
101                 assertEquals(_taskVariableValue.getOperator(),_operator);\r
102 \r
103         }\r
104 \r
105         /**\r
106          * Test setName\r
107          */\r
108         @Test\r
109         public void testSetRequestDetails() {\r
110                 _taskVariableValue.setOperator(_operator);\r
111                 verify(_taskVariableValue).setOperator(_operator);\r
112         }\r
113 \r
114 }\r