Merge "Reorder modifiers"
[so.git] / mso-api-handlers / mso-api-handler-infra / src / test / java / org / openecomp / mso / apihandlerinfra / RecipeLookupResultTest.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;\r
22 \r
23 import org.junit.After;\r
24 import static org.junit.Assert.assertEquals;\r
25 import org.junit.Before;\r
26 import org.junit.Test;\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 \r
31 \r
32 \r
33 public class RecipeLookupResultTest {\r
34 \r
35         RecipeLookupResult instance;\r
36 \r
37     public RecipeLookupResultTest() {\r
38     }\r
39 \r
40     @Before\r
41     public void setUp() {\r
42         instance = mock(RecipeLookupResult.class);\r
43     }\r
44 \r
45     @After\r
46     public void tearDown() {\r
47         instance = null;\r
48     }\r
49 \r
50     /**\r
51      * Test of getOrchestrationURI method\r
52      */\r
53     @Test\r
54     public void testGetOrchestrationURI() {\r
55         String expResult = "orchestrationURI";\r
56         when(instance.getOrchestrationURI()).thenReturn(expResult);\r
57         String result = instance.getOrchestrationURI();\r
58         assertEquals(expResult, result);\r
59     }\r
60 \r
61    \r
62     /**\r
63      * Test of setOrchestrationURI method.\r
64      */\r
65     @Test\r
66     public void testSetOrchestrationURI() {\r
67         String orchestrationUri = "orchestrationURI";\r
68         instance.setOrchestrationURI(orchestrationUri);\r
69         verify(instance).setOrchestrationURI(orchestrationUri);\r
70     }\r
71 \r
72     /**\r
73      * Test of getRecipeTimeout method\r
74      */\r
75     @Test\r
76     public void testGetRecipeTimeout() {\r
77         int expResult = 10;\r
78         when(instance.getRecipeTimeout()).thenReturn(expResult);\r
79         int result = instance.getRecipeTimeout();\r
80         assertEquals(expResult, result);\r
81     }\r
82 \r
83    \r
84     /**\r
85      * Test of setRecipeTimeout method.\r
86      */\r
87     @Test\r
88     public void testSetRecipeTimeout() {\r
89         int recipeTimeOut = 10;\r
90         instance.setRecipeTimeout(recipeTimeOut);\r
91         verify(instance).setRecipeTimeout(10);\r
92     }\r
93     \r
94     \r
95 }\r
96