Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / domain / NetworkResourceTest.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 com.fasterxml.jackson.databind.ObjectMapper;
19 import org.junit.Test;
20 import java.io.IOException;
21
22 public class NetworkResourceTest {
23     private NetworkResource nr = new NetworkResource();
24
25     @Test
26     public void testNetworkResource() {
27         nr.setNetworkType("networkType");
28         nr.setNetworkRole("networkRole");
29         nr.setNetworkTechnology("networkTechnology");
30         nr.setNetworkScope("networkScope");
31         assertEquals(nr.getNetworkType(), "networkType");
32         assertEquals(nr.getNetworkRole(), "networkRole");
33         assertEquals(nr.getNetworkTechnology(), "networkTechnology");
34         assertEquals(nr.getNetworkScope(), "networkScope");
35
36     }
37
38     @Test
39     public void networkResourceMapperTest() throws IOException {
40         String jsonStr = "{\"networkScope\": \"code123\", \"resourceInput\": \"sample\"}";
41         ObjectMapper objectMapper = new ObjectMapper();
42         NetworkResource networkResource = objectMapper.readValue(jsonStr, NetworkResource.class);
43
44         assertTrue(networkResource != null);
45     }
46
47 }