Merge "Fixed Sonar issue in Application.java"
[ccsdk/apps.git] / ms / vlantag-api / src / test / java / org / onap / ccsdk / apps / ms / vlantagapi / core / extinf / pm / model / PolicyEngineResponseTest.java
1 /*******************************************************************************
2  * Copyright © 2018 IBM.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  ******************************************************************************
16 */
17
18 package org.onap.ccsdk.apps.ms.vlantagapi.core.extinf.pm.model;
19
20 import static org.junit.Assert.assertEquals;
21 import static org.junit.Assert.assertTrue;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import org.junit.Before;
27 import org.junit.Test;
28
29 public class PolicyEngineResponseTest {
30     
31     private PolicyEngineResponse policyEngineResponse;
32     
33     @Before
34     public void setUp()
35     {
36         policyEngineResponse= new PolicyEngineResponse();
37     }
38     
39     @Test
40     public void testGetSetPolicyConfigMessage()
41     {
42         policyEngineResponse.setPolicyConfigMessage("policyConfigMessage");
43         assertEquals("policyConfigMessage", policyEngineResponse.getPolicyConfigMessage());
44     }
45
46     @Test
47     public void testGetSetPolicyConfigStatus()
48     {
49         policyEngineResponse.setPolicyConfigStatus("PolicyConfigStatus");
50         assertEquals("PolicyConfigStatus", policyEngineResponse.getPolicyConfigStatus());
51     }
52
53     @Test
54     public void testGetSetType()
55     {
56         policyEngineResponse.setType("Type");
57         assertEquals("Type", policyEngineResponse.getType());
58     }
59
60     @Test
61     public void testGetSetPolicyName()
62     {
63         policyEngineResponse.setPolicyName("PolicyName");
64         assertEquals("PolicyName", policyEngineResponse.getPolicyName());
65     }
66
67     @Test
68     public void testGetSetPolicyType()
69     {
70         policyEngineResponse.setPolicyType("PolicyType");
71         assertEquals("PolicyType", policyEngineResponse.getPolicyType());
72     }
73     
74     @Test
75     public void testGetSetPolicyVersion()
76     {
77         policyEngineResponse.setPolicyVersion("PolicyVersion");
78         assertEquals("PolicyVersion", policyEngineResponse.getPolicyVersion());
79     }
80     
81     @Test
82     public void testGetSetMatchingConditions()
83     {
84         HashMap<String, String> test= new HashMap<>();
85         policyEngineResponse.setMatchingConditions(test);
86         assertEquals(test, policyEngineResponse.getMatchingConditions());
87     }
88     
89     
90     @Test
91     public void testGetSetResponseAttributes()
92     {
93         HashMap<String, String> test= new HashMap<>();
94         policyEngineResponse.setResponseAttributes(test);
95         assertEquals(test, policyEngineResponse.getResponseAttributes());
96     }
97     
98     @Test
99     public void testGetSetProperty()
100     {
101         policyEngineResponse.setProperty("Property");
102         assertEquals("Property", policyEngineResponse.getProperty());
103     }
104     
105     @Test
106     public void testToString()
107     {
108         assertTrue(policyEngineResponse.toString() instanceof String);
109     }
110     
111     
112 }