Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-openstack-adapters / src / test / java / org / onap / so / adapters / network / ContrailSubnetHostRoutesTest.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
16 package org.onap.so.adapters.network;
17
18 import static org.junit.Assert.*;
19 import java.util.List;
20 import org.junit.Test;
21
22 public class ContrailSubnetHostRoutesTest {
23
24     ContrailSubnetHostRoutes cshr = new ContrailSubnetHostRoutes();
25     List<ContrailSubnetHostRoute> host_routes;
26     StringBuilder buf = new StringBuilder();
27
28     @Test
29     public void testContrailSubnetHostRoutes() {
30         cshr.setHost_routes(host_routes);
31         assertEquals(cshr.getHost_routes(), host_routes);
32         assert (cshr.toString() != null);
33     }
34 }