Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / domain / ModelInfoTest.java
1 /*
2  * ============LICENSE_START======================================================= ONAP : SO
3  * ================================================================================ Copyright (C) 2018 TechMahindra
4  * ================================================================================ Licensed under the Apache License,
5  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy
6  * 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 distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15 package org.onap.so.bpmn.core.domain;
16
17 import static org.junit.Assert.*;
18 import org.junit.Test;
19
20 public class ModelInfoTest {
21     private ModelInfo modelinfo = new ModelInfo();
22
23     @Test
24     public void testModelInfo() {
25         modelinfo.setModelName("modelName");
26         modelinfo.setModelUuid("modelUuid");
27         modelinfo.setModelInvariantUuid("modelInvariantUuid");
28         modelinfo.setModelVersion("modelVersion");
29         modelinfo.setModelCustomizationUuid("modelCustomizationUuid");
30         modelinfo.setModelInstanceName("modelInstanceName");
31         modelinfo.setModelType("modelType");
32         assertEquals(modelinfo.getModelName(), "modelName");
33         assertEquals(modelinfo.getModelUuid(), "modelUuid");
34         assertEquals(modelinfo.getModelInvariantUuid(), "modelInvariantUuid");
35         assertEquals(modelinfo.getModelVersion(), "modelVersion");
36         assertEquals(modelinfo.getModelCustomizationUuid(), "modelCustomizationUuid");
37         assertEquals(modelinfo.getModelInstanceName(), "modelInstanceName");
38         assertEquals(modelinfo.getModelType(), "modelType");
39     }
40
41 }