summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorInfoTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorInfoTest.java')
-rw-r--r--common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorInfoTest.java113
1 files changed, 113 insertions, 0 deletions
diff --git a/common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorInfoTest.java b/common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorInfoTest.java
new file mode 100644
index 0000000000..65fc197e62
--- /dev/null
+++ b/common-app-api/src/test/java/org/openecomp/sdc/common/config/EcompErrorInfoTest.java
@@ -0,0 +1,113 @@
+package org.openecomp.sdc.common.config;
+
+import javax.annotation.Generated;
+
+import org.junit.Test;
+
+public class EcompErrorInfoTest {
+
+ private EcompErrorInfo createTestSubject() {
+ return new EcompErrorInfo();
+ }
+
+ @Test
+ public void testGetType() throws Exception {
+ EcompErrorInfo testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getType();
+ }
+
+ @Test
+ public void testSetType() throws Exception {
+ EcompErrorInfo testSubject;
+ String type = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setType(type);
+ }
+
+ @Test
+ public void testGetCode() throws Exception {
+ EcompErrorInfo testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getCode();
+ }
+
+ @Test
+ public void testSetCode() throws Exception {
+ EcompErrorInfo testSubject;
+ String code = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setCode(code);
+ }
+
+ @Test
+ public void testGetSeverity() throws Exception {
+ EcompErrorInfo testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getSeverity();
+ }
+
+ @Test
+ public void testSetSeverity() throws Exception {
+ EcompErrorInfo testSubject;
+ String severity = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setSeverity(severity);
+ }
+
+ @Test
+ public void testGetDescription() throws Exception {
+ EcompErrorInfo testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getDescription();
+ }
+
+ @Test
+ public void testSetDescription() throws Exception {
+ EcompErrorInfo testSubject;
+ String description = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setDescription(description);
+ }
+
+ @Test
+ public void testGetAlarmSeverity() throws Exception {
+ EcompErrorInfo testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getAlarmSeverity();
+ }
+
+ @Test
+ public void testSetAlarmSeverity() throws Exception {
+ EcompErrorInfo testSubject;
+ String alarmSeverity = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setAlarmSeverity(alarmSeverity);
+ }
+
+} \ No newline at end of file