@SuppressWarnings("unchecked")
@Test
public void testGetVErrors2() throws Throwable {
VErrorParser vErrorParser = new VErrorParser();
ISOVError FirstError = new ISOVError("testVErrorParserDescription", "testVErrorParserRejectCode");
ISOComponent c = new ISOVMsg(new ISOMsg("testVErrorParserMti"), FirstError);
Vector result = vErrorParser.getVErrors(c);
assertEquals("result.size()", 1, result.size());
assertSame("result.get(0)", FirstError, result.get(0));
}