}
@Test
public void testUnmarshallWithSpacedXML() {
String xml = "<complex>\n\t<test>testValue</test>\n</complex>";
Parser parser = new Parser();
ComplexWithPath complexWithPath = (ComplexWithPath)parser.decode(xml, ComplexWithPath.class);
Assert.assertNotNull(complexWithPath);
Assert.assertEquals("testValue", complexWithPath.test);
}