public void testTimeZoneRoundTrip()
throws Exception
{
URI subj = new URIImpl(EXAMPLE_NS + PICASSO);
URI pred = new URIImpl(EXAMPLE_NS + PAINTS);
Literal obj = new LiteralImpl("2006-08-23+00:00", XMLSchema.DATE);
testValueRoundTrip(subj, pred, obj);
con.removeStatements(null, null, null);
obj = new LiteralImpl("2006-08-23", XMLSchema.DATE);
testValueRoundTrip(subj, pred, obj);
}