aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/test/java/org/onap/policy
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2019-03-15 13:28:08 -0400
committerJim Hahn <jrh3@att.com>2019-03-15 13:33:15 -0400
commitd51dde65937908d97ad057d1ebb2de9993ee6ed3 (patch)
treeeda93f03ae465aa3ed4a92750ce7b4fdbc225e99 /main/src/test/java/org/onap/policy
parentdddf89d93ba7482bbee05c6967e0065b9c4fbb0e (diff)
Add additional constructors to Exception classes
Modified test class to use auto-tester. Updated comments. Updated licenses. Change-Id: I993d0b78f31d15e6e6c35b701ed801616708628a Issue-ID: POLICY-1542 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'main/src/test/java/org/onap/policy')
-rw-r--r--main/src/test/java/org/onap/policy/pap/main/TestExceptions.java17
1 files changed, 7 insertions, 10 deletions
diff --git a/main/src/test/java/org/onap/policy/pap/main/TestExceptions.java b/main/src/test/java/org/onap/policy/pap/main/TestExceptions.java
index b45cdab7..9e3cda9c 100644
--- a/main/src/test/java/org/onap/policy/pap/main/TestExceptions.java
+++ b/main/src/test/java/org/onap/policy/pap/main/TestExceptions.java
@@ -1,6 +1,7 @@
-/*-
+/*
* ============LICENSE_START=======================================================
* Copyright (C) 2019 Nordix Foundation.
+ * Modifications Copyright (C) 2019 AT&T Intellectual Property.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,11 +21,10 @@
package org.onap.policy.pap.main;
-import static org.junit.Assert.assertNotNull;
-
-import java.io.IOException;
-
import org.junit.Test;
+import org.onap.policy.common.utils.test.ExceptionsTester;
+import org.onap.policy.pap.main.PolicyPapException;
+import org.onap.policy.pap.main.PolicyPapRuntimeException;
/**
* Class to perform unit test of {@link PolicyPapException PolicyPapRuntimeException}}.
@@ -35,10 +35,7 @@ public class TestExceptions {
@Test
public void test() {
- assertNotNull(new PolicyPapException("Message"));
- assertNotNull(new PolicyPapException("Message", new IOException()));
-
- assertNotNull(new PolicyPapRuntimeException("Message"));
- assertNotNull(new PolicyPapRuntimeException("Message", new IOException()));
+ new ExceptionsTester().test(PolicyPapException.class);
+ new ExceptionsTester().test(PolicyPapRuntimeException.class);
}
}