System.out.println("testValue ==> " + testValue);
System.out.println("calendar ==> " + formatCalendarXsdWithTz(calendar, 0, timeZone));
System.out.println("back ==> " + back);
// make sure that timeZone.getRawOffset() is sufficient
assertFalse ("custom time zone should not use day light saving",
timeZone.useDaylightTime());
assertEquals(testValue,
formatCalendarXsdWithTz(calendar, 0, timeZone));
assertEquals("should be in timezone +05:30",
timeZone.getRawOffset(),
calendar.get(Calendar.ZONE_OFFSET)+calendar.get(Calendar.DST_OFFSET));