summaryrefslogtreecommitdiffstats
path: root/csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java
diff options
context:
space:
mode:
authorBogumil Zebek <bogumil.zebek@nokia.com>2020-08-04 12:56:12 +0200
committerZebek Bogumil <bogumil.zebek@nokia.com>2020-08-21 11:15:31 +0200
commit158248d9e2006e8e5f5c181f07b5aac57cb9ddd0 (patch)
treec198dfd629a8ff4f2f96286d8c6445d2cec1c999 /csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java
parent8cbf161905d50a97fd78f28fb14b08bbd75c3abe (diff)
Migrate from java 8 to java 11
Change-Id: If146dc0d99541a8a14ecc5e504c49a5c433a262f Issue-ID: VNFSDK-631 Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com>
Diffstat (limited to 'csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java')
-rw-r--r--csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java b/csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java
new file mode 100644
index 0000000..fcbc439
--- /dev/null
+++ b/csarvalidation/src/test/java/org/onap/validation/csar/ValidationExceptionTest.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2020 Nokia
+ * <p>
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * <p>
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * <p>
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.onap.validation.csar;
+
+import static org.junit.Assert.assertTrue;
+
+import java.io.IOException;
+import org.junit.Test;
+import org.onap.validation.csar.ErrorCodes;
+import org.onap.validation.csar.ValidationException;
+
+public class ValidationExceptionTest {
+ ValidationException validationException = new ValidationException();
+
+ @Test
+ public void testWrappedInfoThrowableErrorCodes() {
+ Throwable ex = new IOException();
+ ValidationException.wrappedInfo(ex, ErrorCodes.FILE_IO);
+ assertTrue(true);
+ }
+
+ @Test
+ public void testWrappedInfoThrowableErrorCodes1() {
+ Throwable ex = new ValidationException();
+ ValidationException.wrappedInfo(ex, ErrorCodes.FILE_IO);
+ assertTrue(true);
+ }
+
+ @Test
+ public void testWrappedInfoThrowableErrorCodes2() {
+ Throwable ex = new ValidationException();
+ ValidationException.wrappedInfo(ex, null);
+ assertTrue(true);
+ }
+}