Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / domain / ResourceDecompositionTest.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 ResourceDecompositionTest {
21
22     private ResourceDecomposition rd = new ResourceDecomposition() {
23         private static final long serialVersionUID = 1L;
24     };
25     ModelInfo model = new ModelInfo();
26     ResourceInstance ri = new ResourceInstance();
27
28
29
30     @Test
31     public void testResourceDecomposition() {
32         rd.setModelInfo(model);
33         rd.setInstanceData(ri);
34         rd.setResourceType("resourceType");
35         rd.setResourceInstanceId("newInstanceId");
36         rd.setResourceInstanceName("newInstanceName");
37         assertEquals(rd.getResourceModel(), model);
38         assertEquals(rd.getModelInfo(), model);
39         assertEquals(rd.getInstanceData(), ri);
40         assertEquals(rd.getResourceInstanceId(), "newInstanceId");
41         assertEquals(rd.getResourceInstanceName(), "newInstanceName");
42     }
43
44 }