9838ff023d7ca4a6ffdab0b6513640191c78c05f
[so.git] / bpmn / MSOURN-plugin / src / test / java / org / openecomp / camunda / bpmn / 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 org.openecomp.camunda.bpmn.plugin.urnmap.db;
7
8 import org.junit.Test;
9
10 import static org.junit.Assert.*;
11 import static org.evosuite.runtime.EvoAssertions.*;
12
13 import org.evosuite.runtime.EvoRunner;
14 import org.evosuite.runtime.EvoRunnerParameters;
15 import org.junit.runner.RunWith;
16 import org.openecomp.camunda.bpmn.plugin.urnmap.db.URNService;
17
18 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true) 
19 public class URNServiceESTest extends URNServiceESTestscaffolding {
20
21   @Test(timeout = 4000)
22   public void test0()  throws Throwable  {
23       URNService uRNService0 = new URNService();
24       // Undeclared exception!
25       try { 
26         uRNService0.getProperties();
27         fail("Expecting exception: NullPointerException");
28       
29       } catch(NullPointerException e) {
30          //
31          // no message in exception (getMessage() returned null)
32          //
33          verifyException("org.openecomp.camunda.bpmn.plugin.urnmap.db.URNService", e);
34       }
35   }
36 }