}
// test ComplexTypeWithContentType
{
ComplexTypeWithContentType param = null;
InteropFactory factory = InteropFactory.INSTANCE;
param = factory.createComplexTypeWithContentType();
param.setSimpleTypeWithName("SomeText");
ComplexTypeWithContentType result = greeterClient.greetComplexTypeWithContentType(param);
assertEquals("data not changed corretly", "SomeChangedText", result.getSimpleTypeWithName());
}
}