Added junit coverage to CoreException class 05/36805/2
authorLori Keighron <lk2924@att.com>
Mon, 19 Mar 2018 16:24:47 +0000 (12:24 -0400)
committerTakamune Cho <tc012c@att.com>
Mon, 19 Mar 2018 18:57:39 +0000 (18:57 +0000)
Introduce junit-tests for CoreException class

Issue-ID: APPC-752
Change-Id: Ic5c8c2c83ce99d488e9e79a8fb72e7ad5fcf2ad3
Signed-off-by: Lori Keighron <lk2924@att.com>
appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreExceptionTest.java [new file with mode: 0644]

diff --git a/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreExceptionTest.java b/appc-client/client-lib/src/test/java/org/onap/appc/client/impl/core/CoreExceptionTest.java
new file mode 100644 (file)
index 0000000..e661d4b
--- /dev/null
@@ -0,0 +1,55 @@
+/*-\r
+ * ============LICENSE_START=======================================================\r
+ * ONAP : APPC\r
+ * ================================================================================\r
+ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.\r
+ * ================================================================================\r
+ * Copyright (C) 2017 Amdocs\r
+ * =============================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ *\r
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
+ * ============LICENSE_END=========================================================\r
+ */\r
+\r
+package org.onap.appc.client.impl.core;\r
+\r
+import static org.junit.Assert.*;\r
+import org.junit.Test;\r
+\r
+public class CoreExceptionTest {\r
+    @Test\r
+    public void testCoreException() {\r
+        CoreException ce = new CoreException();\r
+        assertNotNull(ce);\r
+    }\r
+\r
+    @Test\r
+    public void testCoreExceptionString() {\r
+        CoreException ce = new CoreException(new String("testCoreExceptionString"));\r
+        assertNotNull(ce.getMessage());\r
+    }\r
+\r
+    @Test\r
+    public void testCoreExceptionStringThrowable() {\r
+        Throwable tr = new Throwable();\r
+        CoreException ce = new CoreException("abc", tr);\r
+        assertNotNull(ce.getMessage());\r
+    }\r
+\r
+    @Test\r
+    public void testCoreExceptionThrowable() {\r
+        CoreException ce = new CoreException(new Throwable());\r
+        assertNotNull(ce.getMessage());\r
+    }\r
+}
\ No newline at end of file