c0305f18de7ffbfc9eb65f3f20e5c4f2f46a6f4b
[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.vfc.exceptions;
17
18 import static org.junit.Assert.*;
19 import org.junit.Test;
20
21 public class ApplicationExceptionTest {
22     private ApplicationException application = new ApplicationException(500, null);
23
24     @Test
25     public void testApplicationException() {
26         application.setErrorCode(500);
27         application.setErrorMsg("ErrorMsg");
28         assertEquals(application.getErrorCode(), 500);
29         assertEquals(application.getErrorMsg(), "ErrorMsg");
30     }
31
32     @Test
33     public void testbuildErrorResponse() {
34         assert (application.buildErrorResponse() != null);
35     }
36 }