Initial OpenECOMP MSO commit
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / openecomp / mso / bpmn / core / LogTaskESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 11:29:34 GMT 2016
4  */
5
6 package org.openecomp.mso.bpmn.core;
7
8 import org.junit.Test;
9 import static org.junit.Assert.*;
10
11 import org.camunda.bpm.engine.impl.pvm.runtime.ExecutionImpl;
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 LogTaskESTest extends LogTaskESTestscaffolding {
18
19   @Test(timeout = 4000)
20   public void test0()  throws Throwable  {
21       LogTask logTask0 = null;
22       try {
23         logTask0 = new LogTask();
24         fail("Expecting exception: NoClassDefFoundError");
25       
26       } catch(NoClassDefFoundError e) {
27       }
28   }
29
30   @Test(timeout = 4000)
31   public void test1()  throws Throwable  {
32       ExecutionImpl executionImpl0 = new ExecutionImpl();
33       LogTask logTask0 = null;
34       try {
35         logTask0 = new LogTask();
36         fail("Expecting exception: NoClassDefFoundError");
37       
38       } catch(NoClassDefFoundError e) {
39       }
40   }
41 }