aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java')
-rw-r--r--controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java14
1 files changed, 3 insertions, 11 deletions
diff --git a/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java b/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java
index aca8d9655..198af71b2 100644
--- a/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java
+++ b/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java
@@ -3,7 +3,7 @@
* eventmanager
* ================================================================================
* Copyright (C) 2018 Ericsson. All rights reserved.
- * Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019-20201 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -21,21 +21,13 @@
package org.onap.policy.controlloop;
-import static org.junit.Assert.assertNotNull;
-
-import java.io.IOException;
import org.junit.Test;
+import org.onap.policy.common.utils.test.ExceptionsTester;
public class ControlLoopExceptionTest {
- private static final String IN_OZ = "In Oz";
-
@Test
public void testControlLoopException() {
- assertNotNull(new ControlLoopException());
- assertNotNull(new ControlLoopException(IN_OZ));
- assertNotNull(new ControlLoopException(new IOException()));
- assertNotNull(new ControlLoopException(IN_OZ, new IOException()));
- assertNotNull(new ControlLoopException(IN_OZ, new IOException(), false, false));
+ new ExceptionsTester().test(ControlLoopException.class);
}
}