@Test
public void sanityTest2() {
Parser parser = new Parser();
Complex complex = new Complex();
complex.simple = new Simple();
complex.simple.stringValue = "stringValueContent";
String xml = parser.encode(complex);
Assert.assertEquals("<stringValue>stringValueContent</stringValue>", xml);