aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOURN-plugin/src/test/java/org/openecomp/camunda/bpmn/plugin/urnmap/db/URNServiceESTest.java
blob: 9838ff023d7ca4a6ffdab0b6513640191c78c05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * This file was automatically generated by EvoSuite
 * Mon Nov 14 13:47:07 GMT 2016
 */

package org.openecomp.camunda.bpmn.plugin.urnmap.db;

import org.junit.Test;

import static org.junit.Assert.*;
import static org.evosuite.runtime.EvoAssertions.*;

import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
import org.openecomp.camunda.bpmn.plugin.urnmap.db.URNService;

@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
public class URNServiceESTest extends URNServiceESTestscaffolding {

  @Test(timeout = 4000)
  public void test0()  throws Throwable  {
      URNService uRNService0 = new URNService();
      // Undeclared exception!
      try { 
        uRNService0.getProperties();
        fail("Expecting exception: NullPointerException");
      
      } catch(NullPointerException e) {
         //
         // no message in exception (getMessage() returned null)
         //
         verifyException("org.openecomp.camunda.bpmn.plugin.urnmap.db.URNService", e);
      }
  }
}