043f4ea93d5d435e5d690df84c9cf56048b9c5ad
[so.git] / mso-api-handlers / mso-api-handler-infra / src / test / java / org / onap / so / apihandlerinfra / tasksbeans / TaskRequestReferenceTest.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 public class TaskRequestReferenceTest {
34
35         TaskRequestReference _taskRequestReference;
36
37     protected String _taskId;
38         public TaskRequestReferenceTest() {
39         }
40         
41         @Before
42         public void setUp() {
43                 _taskRequestReference = mock(TaskRequestReference.class);
44                 _taskId = "taskid";
45         
46                 when(_taskRequestReference.getTaskId()).thenReturn(_taskId);
47         }
48
49         @After
50         public void tearDown() {
51                 _taskRequestReference = null;
52         }
53
54         /**
55          * Test getTaskRequestReference 
56          */
57         @Test
58         public void taskGetRequestReference() {
59                 String result = _taskRequestReference.getTaskId();
60         assertEquals(_taskId, result);
61         }
62
63         /**
64          * Test setTaskRequestReference
65          */
66         @Test
67         public void testSetRequestInfo() {
68                 _taskRequestReference.setTaskId(_taskId);
69                 verify(_taskRequestReference).setTaskId(_taskId);
70         }
71 }