10/31: merge casablanca to master
[so.git] / mso-api-handlers / mso-api-handler-infra / src / test / java / org / onap / so / apihandlerinfra / tasksbeans / ValueTest.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 import org.junit.Before;
25 import org.junit.Test;
26 import static org.junit.Assert.*;
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.verify;
29 import static org.mockito.Mockito.when;
30
31 public class ValueTest {
32         Value _valueInstance;
33         protected String _value;
34
35         public ValueTest() {
36         }
37
38         @Before
39         public void setUp() {
40                 _valueInstance = mock(Value.class);
41                 _value = "_value";
42                 when(_valueInstance.getValue()).thenReturn(_value);
43         }
44
45         @After
46         public void tearDown() {
47                 _valueInstance = null;
48         }
49
50         /**
51          * Test of getValue method
52          */
53         @Test
54         public void testGetValue() {
55                 _valueInstance.setValue(_value);
56                 assertEquals(_valueInstance.getValue(),_value);
57
58         }
59
60         /**
61          * Test setValue
62          */
63         @Test
64         public void testSetValue() {
65                 _valueInstance.setValue(_value);
66                 verify(_valueInstance).setValue(_value);
67         }
68 }