Initial OpenECOMP MSO commit
[so.git] / common / src / test / java / org / openecomp / mso / properties / MsoJsonPropertiesESTest.java
1 /*
2  * This file was automatically generated by EvoSuite
3  * Mon Nov 14 09:04:39 GMT 2016
4  */
5
6 package org.openecomp.mso.properties;
7
8 import static org.evosuite.runtime.EvoAssertions.verifyException;
9 import static org.junit.Assert.fail;
10
11 import org.evosuite.runtime.EvoRunner;
12 import org.evosuite.runtime.EvoRunnerParameters;
13 import org.junit.Ignore;
14 import org.junit.Test;
15 import org.junit.runner.RunWith;
16
17 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, useJEE = true)
18 public class MsoJsonPropertiesESTest {
19
20   @Ignore
21   @Test(timeout = 4000)
22   public void test0()  throws Throwable  {
23       MsoJsonProperties msoJsonProperties0 = null;
24       try {
25         msoJsonProperties0 = new MsoJsonProperties();
26         fail("Expecting exception: VerifyError");
27
28       } catch(VerifyError e) {
29          //
30          // (class: org/codehaus/jackson/map/MapperConfig, method: <clinit> signature: ()V) Bad type in putfield/putstatic
31          //
32          verifyException("org.codehaus.jackson.map.ObjectMapper", e);
33       }
34   }
35 }