@org.junit.Test
public void test_S2_import()
{
StructValue sv = new StructValue( ValueFactoryTest1._mt_org_apache_etch_tests_Test1_S2, vf );
sv.put( ValueFactoryTest1._mf_a, new S1( 21, 22, 23 ) );
sv.put( ValueFactoryTest1._mf_b, new S1( 31, 32, 33 ) );
sv.put( ValueFactoryTest1._mf_c, E1.A );
S2 s = (S2) vf.importCustomValue( sv );
assertEquals( 21, s.a.x );
assertEquals( 22, s.a.y );