/* * 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: signature: ()V) Bad type in putfield/putstatic // verifyException("org.codehaus.jackson.map.ObjectMapper", e); } } }