aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/be/config/ErrorConfigurationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'common-app-api/src/test/java/org/openecomp/sdc/be/config/ErrorConfigurationTest.java')
-rw-r--r--common-app-api/src/test/java/org/openecomp/sdc/be/config/ErrorConfigurationTest.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/common-app-api/src/test/java/org/openecomp/sdc/be/config/ErrorConfigurationTest.java b/common-app-api/src/test/java/org/openecomp/sdc/be/config/ErrorConfigurationTest.java
deleted file mode 100644
index d9e6066224..0000000000
--- a/common-app-api/src/test/java/org/openecomp/sdc/be/config/ErrorConfigurationTest.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package org.openecomp.sdc.be.config;
-
-import java.util.Map;
-
-import org.junit.Test;
-
-
-public class ErrorConfigurationTest {
-
- private ErrorConfiguration createTestSubject() {
- return new ErrorConfiguration();
- }
-
-
- @Test
- public void testGetErrors() throws Exception {
- ErrorConfiguration testSubject;
- Map<String, ErrorInfo> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getErrors();
- }
-
-
- @Test
- public void testSetErrors() throws Exception {
- ErrorConfiguration testSubject;
- Map<String, ErrorInfo> errors = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setErrors(errors);
- }
-
-
-
-
-
- @Test
- public void testToString() throws Exception {
- ErrorConfiguration testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.toString();
- }
-} \ No newline at end of file