Date date = new Date();
defaultMappedSimple.dateValue = date;
defaultMappedSimple.longValue = 1L;
defaultMappedSimple.string = "stringValue";
String xml = parser.encode(defaultMappedSimple);
StringBuilder expected = new StringBuilder();
expected.append("<simple><dateValue>");
Calendar calendar = GregorianCalendar.getInstance();