1ce4c664acf9f2f17d8b659ced93ff009260145a
[so.git] /
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.tenant.exceptions;
17
18 import org.junit.Test;
19 import org.mockito.InjectMocks;
20 import org.mockito.Mock;
21 import org.onap.so.openstack.exceptions.MsoExceptionCategory;
22 import static org.junit.Assert.*;
23
24 public class TenantExceptionTest {
25
26     @Mock
27     private TenantExceptionBean teb;
28
29     @Mock
30     private MsoExceptionCategory mec;
31
32     @InjectMocks
33     private TenantException te;
34
35     @Test
36     public void test() {
37         teb = new TenantExceptionBean("message");
38         teb.setMessage("message");
39         teb.setCategory(MsoExceptionCategory.INTERNAL);
40         te = new TenantException("message", mec);
41         te.setFaultInfo(teb);
42         assert (te.getFaultInfo() != null);
43         assert (te.getFaultInfo().equals(teb));
44         assertNotNull(teb);
45     }
46 }