3cc415cddf7492d30bfc873a9694f1024abc45e5
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / test / java / org / onap / policy / so / SoModelInfoTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  * 
6  * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.so;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Test;
28
29 public class SoModelInfoTest {
30
31     @Test
32     public void testConstructor() {
33         SoModelInfo obj = new SoModelInfo();
34
35         assertTrue(obj.getModelCustomizationId() == null);
36         assertTrue(obj.getModelCustomizationName() == null);
37         assertTrue(obj.getModelInvariantId() == null);
38         assertTrue(obj.getModelName() == null);
39         assertTrue(obj.getModelType() == null);
40         assertTrue(obj.getModelVersion() == null);
41         assertTrue(obj.getModelVersionId() == null);
42     }
43
44     @Test
45     public void testSetGet() {
46         SoModelInfo obj = new SoModelInfo();
47
48         obj.setModelCustomizationId("modelCustomizationId");
49         assertEquals("modelCustomizationId", obj.getModelCustomizationId());
50
51         obj.setModelCustomizationName("modelCustomizationName");
52         assertEquals("modelCustomizationName", obj.getModelCustomizationName());
53
54         obj.setModelInvariantId("modelInvariantId");
55         assertEquals("modelInvariantId", obj.getModelInvariantId());
56
57         obj.setModelName("modelName");
58         assertEquals("modelName", obj.getModelName());
59
60         obj.setModelType("modelType");
61         assertEquals("modelType", obj.getModelType());
62
63         obj.setModelVersion("modelVersion");
64         assertEquals("modelVersion", obj.getModelVersion());
65
66         obj.setModelVersionId("modelVersionId");
67         assertEquals("modelVersionId", obj.getModelVersionId());
68
69     }
70 }