private void testS3Import(String s, Object value)
{
StructValue sv = new StructValue( ValueFactoryTest1._mt_org_apache_etch_tests_Test1_S3, vf );
sv.put( ValueFactoryTest1._mf_tipe, s );
sv.put( ValueFactoryTest1._mf_x, value );
S3 myS3 = (S3) vf.importCustomValue( sv );
assertEquals( s, myS3.tipe );
assertEquals( value, myS3.x );
}