public class ISOVException1Test {
@Test
public void testConstructor() throws Throwable {
ISOComponent errComponent = new ISOMsg("testISOVExceptionMti");
ISOVException iSOVException = new ISOVException("testISOVExceptionDescription", errComponent);
assertSame("iSOVException.errComponent", errComponent, iSOVException.errComponent);
assertEquals("iSOVException.getMessage()", "testISOVExceptionDescription", iSOVException.getMessage());
assertFalse("iSOVException.treated", iSOVException.treated);
assertNull("iSOVException.getNested()", iSOVException.getNested());