aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/resources/ProcessInstanceResourceESTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/resources/ProcessInstanceResourceESTest.java')
-rw-r--r--bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/resources/ProcessInstanceResourceESTest.java88
1 files changed, 0 insertions, 88 deletions
diff --git a/bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/resources/ProcessInstanceResourceESTest.java b/bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/resources/ProcessInstanceResourceESTest.java
deleted file mode 100644
index 21ca18c3f7..0000000000
--- a/bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/resources/ProcessInstanceResourceESTest.java
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * This file was automatically generated by EvoSuite
- * Mon Nov 14 13:45:16 GMT 2016
- */
-
-package org.openecomp.camunda.bpmn.plugin.urnmap.resources;
-
-import org.junit.Test;
-
-import static org.junit.Assert.*;
-import static org.evosuite.runtime.EvoAssertions.*;
-
-import java.util.NoSuchElementException;
-
-import org.evosuite.runtime.EvoRunner;
-import org.evosuite.runtime.EvoRunnerParameters;
-import org.junit.runner.RunWith;
-import org.openecomp.camunda.bpmn.plugin.urnmap.db.URNData;
-import org.openecomp.camunda.bpmn.plugin.urnmap.resources.ProcessInstanceResource;
-
-@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true)
-public class ProcessInstanceResourceESTest extends ProcessInstanceResourceESTestscaffolding {
-
- @Test(timeout = 4000)
- public void test0() throws Throwable {
- ProcessInstanceResource processInstanceResource0 = new ProcessInstanceResource((String) null);
- // Undeclared exception!
- try {
- processInstanceResource0.getUrnDataMap();
- fail("Expecting exception: NullPointerException");
-
- } catch(NullPointerException e) {
- //
- // no message in exception (getMessage() returned null)
- //
- verifyException("org.camunda.bpm.cockpit.Cockpit", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test1() throws Throwable {
- ProcessInstanceResource processInstanceResource0 = new ProcessInstanceResource("DEUtDF$-rb|D]l9");
- // Undeclared exception!
- try {
- processInstanceResource0.insertNewRow("DEUtDF$-rb|D]l9");
- fail("Expecting exception: NullPointerException");
-
- } catch(NullPointerException e) {
- //
- // no message in exception (getMessage() returned null)
- //
- verifyException("org.camunda.bpm.cockpit.Cockpit", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test2() throws Throwable {
- URNData uRNData0 = new URNData();
- ProcessInstanceResource processInstanceResource0 = new ProcessInstanceResource("|");
- // Undeclared exception!
- try {
- processInstanceResource0.getPersistData(uRNData0);
- fail("Expecting exception: NullPointerException");
-
- } catch(NullPointerException e) {
- //
- // no message in exception (getMessage() returned null)
- //
- verifyException("org.camunda.bpm.cockpit.Cockpit", e);
- }
- }
-
- @Test(timeout = 4000)
- public void test3() throws Throwable {
- ProcessInstanceResource processInstanceResource0 = new ProcessInstanceResource("xGUKD= Ea6(aT");
- // Undeclared exception!
- try {
- processInstanceResource0.insertNewRow("xGUKD= Ea6(aT");
- fail("Expecting exception: NoSuchElementException");
-
- } catch(NoSuchElementException e) {
- //
- // no message in exception (getMessage() returned null)
- //
- verifyException("java.util.StringTokenizer", e);
- }
- }
-}