summaryrefslogtreecommitdiffstats
path: root/forwarding/src
diff options
context:
space:
mode:
Diffstat (limited to 'forwarding/src')
-rw-r--r--forwarding/src/test/java/org/onap/policy/distribution/forwarding/TestExceptions.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/forwarding/src/test/java/org/onap/policy/distribution/forwarding/TestExceptions.java b/forwarding/src/test/java/org/onap/policy/distribution/forwarding/TestExceptions.java
index 66e16651..eaa74cfd 100644
--- a/forwarding/src/test/java/org/onap/policy/distribution/forwarding/TestExceptions.java
+++ b/forwarding/src/test/java/org/onap/policy/distribution/forwarding/TestExceptions.java
@@ -20,13 +20,13 @@
package org.onap.policy.distribution.forwarding;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
import org.onap.policy.common.utils.test.ExceptionsTester;
-public class TestExceptions {
+class TestExceptions {
@Test
- public void test() {
+ void test() {
new ExceptionsTester().test(PolicyForwardingException.class);
}
}
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156