}
@Test
public void testValidate1() throws Throwable {
MSGTEST02 mSGTEST02 = new MSGTEST02();
ISOVMsg m = mock(ISOVMsg.class);
given(m.getComposite()).willReturn(m);
given(m.hasFields(new int[] { 0, 1 })).willReturn(false);
given(m.addISOVError(isA(ISOVError.class))).willReturn(true);
given(m.getString(0)).willReturn("");
ISOVMsg result = (ISOVMsg) mSGTEST02.validate(m);
assertSame("result", m, result);
}