29a0a8bf7368e68090743d2988721c2272bb0e78
[aaf/cadi.git] / core / src / test / java / org / onap / aaf / cadi / CadiExceptionTest.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.cadi;\r
24 \r
25 import static org.hamcrest.CoreMatchers.is;\r
26 import static org.junit.Assert.*;\r
27 \r
28 import org.junit.Test;\r
29 \r
30 public class CadiExceptionTest {\r
31 \r
32         @Test\r
33         public void testCadiException() {\r
34                 CadiException exception = new CadiException();\r
35                 \r
36                 assertNotNull(exception);\r
37         }\r
38 \r
39         @Test\r
40         public void testCadiExceptionString() {\r
41                 CadiException exception = new CadiException("New Exception");\r
42                 assertNotNull(exception);\r
43                 assertThat(exception.getMessage(), is("New Exception"));\r
44         }\r
45 \r
46         @Test\r
47         public void testCadiExceptionThrowable() {\r
48                 CadiException exception = new CadiException(new Throwable("New Exception"));\r
49                 assertNotNull(exception);\r
50                 assertThat(exception.getMessage(), is("java.lang.Throwable: New Exception"));\r
51         }\r
52 \r
53         @Test\r
54         public void testCadiExceptionStringThrowable() {\r
55                 CadiException exception = new CadiException("New Exception",new Throwable("New Exception"));\r
56                 assertNotNull(exception);\r
57                 assertThat(exception.getMessage(), is("New Exception"));\r
58 \r
59         }\r
60 \r
61 }\r