assertEquals( value, sv.get( ValueFactoryTest1._mf_x ) );
}
private void testExcp6Import(String msg, int code, Object[] value)
{
StructValue sv = new StructValue( ValueFactoryTest1._mt_etch_tests_Test1_Excp6, vf );
sv.put( ValueFactoryTest1._mf_msg, msg );
sv.put( ValueFactoryTest1._mf_code, code );
sv.put( ValueFactoryTest1._mf_x, value );
Excp6 e = (Excp6) vf.importCustomValue( sv );
assertEquals( msg, e.msg );
assertEquals( code, e.code );
assertArrayEquals( value, e.x );
}