summaryrefslogtreecommitdiffstats
path: root/common/src/test/java/org/openecomp/mso/properties/MsoJsonPropertiesESTest.java
blob: 0243c13c7f6e260778b1c2be960e48c8a7e0559e (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
/*
 * This file was automatically generated by EvoSuite
 * Mon Nov 14 09:04:39 GMT 2016
 */

package org.openecomp.mso.properties;

import static org.evosuite.runtime.EvoAssertions.verifyException;
import static org.junit.Assert.fail;

import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

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

  @Ignore
  @Test(timeout = 4000)
  public void test0()  throws Throwable  {
      MsoJsonProperties msoJsonProperties0 = null;
      try {
        msoJsonProperties0 = new MsoJsonProperties();
        fail("Expecting exception: VerifyError");

      } catch(VerifyError e) {
         //
         // (class: org/codehaus/jackson/map/MapperConfig, method: <clinit> signature: ()V) Bad type in putfield/putstatic
         //
         verifyException("org.codehaus.jackson.map.ObjectMapper", e);
      }
  }
}