Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-openstack-adapters / src / test / java / org / onap / so / adapters / network / exceptions / NetworkExceptionTest.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.exceptions;
17
18 import static org.junit.Assert.assertEquals;
19 import org.junit.Test;
20 import org.onap.so.openstack.exceptions.MsoException;
21 import org.onap.so.openstack.exceptions.MsoExceptionCategory;
22
23 public class NetworkExceptionTest {
24
25     NetworkException ne = new NetworkException("msg");
26     NetworkExceptionBean neb = new NetworkExceptionBean();
27     MsoException msoException = new MsoException("msoException") {
28         private static final long serialVersionUID = 1L;
29     };
30     MsoExceptionCategory msc = MsoExceptionCategory.INTERNAL;
31     NetworkException ne1 = new NetworkException(msoException);
32     NetworkException ne2 = new NetworkException(ne);
33     NetworkException ne3 = new NetworkException("msg", ne);
34     NetworkException ne4 = new NetworkException("msg", msoException);
35     NetworkException ne5 = new NetworkException("msg", msc);
36     NetworkException ne6 = new NetworkException("msg", msc, ne);
37
38     @Test
39     public void test() {
40         ne.setFaultInfo(neb);
41         assertEquals(ne.getFaultInfo(), neb);
42     }
43
44 }