Improve code coverage for aaf cadi modules
[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.junit.Assert.*;\r
26 \r
27 import org.junit.Test;\r
28 \r
29 import static org.hamcrest.CoreMatchers.is;\r
30 import static org.junit.Assert.*;\r
31 \r
32 import org.junit.Test;\r
33 \r
34 public class CadiExceptionTest {\r
35 \r
36         @Test\r
37         public void testCadiException() {\r
38                 CadiException exception = new CadiException();\r
39                 \r
40                 assertNotNull(exception);\r
41         }\r
42 \r
43         @Test\r
44         public void testCadiExceptionString() {\r
45                 CadiException exception = new CadiException("New Exception");\r
46                 assertNotNull(exception);\r
47                 assertThat(exception.getMessage(), is("New Exception"));\r
48         }\r
49 \r
50         @Test\r
51         public void testCadiExceptionThrowable() {\r
52                 CadiException exception = new CadiException(new Throwable("New Exception"));\r
53                 assertNotNull(exception);\r
54                 assertThat(exception.getMessage(), is("java.lang.Throwable: New Exception"));\r
55         }\r
56 \r
57         @Test\r
58         public void testCadiExceptionStringThrowable() {\r
59                 CadiException exception = new CadiException("New Exception",new Throwable("New Exception"));\r
60                 assertNotNull(exception);\r
61                 assertThat(exception.getMessage(), is("New Exception"));\r
62 \r
63         }\r
64         \r
65         @Test\r
66         public void testCadiException1() {\r
67                 CadiException exception = new CadiException();\r
68                 \r
69                 assertNotNull(exception);\r
70         }\r
71 \r
72         @Test\r
73         public void testCadiExceptionString1() {\r
74                 CadiException exception = new CadiException("New Exception");\r
75                 assertNotNull(exception);\r
76                 assertThat(exception.getMessage(), is("New Exception"));\r
77         }\r
78 \r
79         @Test\r
80         public void testCadiExceptionThrowable1() {\r
81                 CadiException exception = new CadiException(new Throwable("New Exception"));\r
82                 assertNotNull(exception);\r
83                 assertThat(exception.getMessage(), is("java.lang.Throwable: New Exception"));\r
84         }\r
85 \r
86         @Test\r
87         public void testCadiExceptionStringThrowable1() {\r
88                 CadiException exception = new CadiException("New Exception",new Throwable("New Exception"));\r
89                 assertNotNull(exception);\r
90                 assertThat(exception.getMessage(), is("New Exception"));\r
91 \r
92         }\r
93         \r
94         @Test\r
95         public void testCadiException2() {\r
96                 CadiException exception = new CadiException();\r
97                 \r
98                 assertNotNull(exception);\r
99         }\r
100 \r
101         @Test\r
102         public void testCadiExceptionString2() {\r
103                 CadiException exception = new CadiException("New Exception");\r
104                 assertNotNull(exception);\r
105                 assertThat(exception.getMessage(), is("New Exception"));\r
106         }\r
107 \r
108         @Test\r
109         public void testCadiExceptionThrowable2() {\r
110                 CadiException exception = new CadiException(new Throwable("New Exception"));\r
111                 assertNotNull(exception);\r
112                 assertThat(exception.getMessage(), is("java.lang.Throwable: New Exception"));\r
113         }\r
114 \r
115         @Test\r
116         public void testCadiExceptionStringThrowable2() {\r
117                 CadiException exception = new CadiException("New Exception",new Throwable("New Exception"));\r
118                 assertNotNull(exception);\r
119                 assertThat(exception.getMessage(), is("New Exception"));\r
120 \r
121         }\r
122 \r
123 \r
124 \r
125 }\r