9c71cdebf31ec9f2495e6915ed036c5529574bfa
[so.git] / bpmn / MSOURN-plugin / src / test / java / com / att / camunda / bpm / plugin / urnmap / db / URNServiceESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 13:47:07 GMT 2016
4  */
5
6 package com.att.camunda.bpm.plugin.urnmap.db;
7
8 import org.junit.Test;
9 import static org.junit.Assert.*;
10 import static org.evosuite.runtime.EvoAssertions.*;
11
12 import org.evosuite.runtime.EvoRunner;
13 import org.evosuite.runtime.EvoRunnerParameters;
14 import org.junit.runner.RunWith;
15
16 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
17 public class URNServiceESTest extends URNServiceESTestscaffolding {
18
19   @Test(timeout = 4000)
20   public void test0()  throws Throwable  {
21       URNService uRNService0 = new URNService();
22       // Undeclared exception!
23       try { 
24         uRNService0.getProperties();
25         fail("Expecting exception: NullPointerException");
26       
27       } catch(NullPointerException e) {
28          //
29          // no message in exception (getMessage() returned null)
30          //
31          verifyException("com.att.camunda.bpm.plugin.urnmap.db.URNService", e);
32       }
33   }
34 }