We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad3be7a commit 02d6213Copy full SHA for 02d6213
src/test/java/com/microsoft/graph/serializer/TimeOfDayTests.java
@@ -36,4 +36,12 @@ public void testTimeOfDayDeserializerIndefinite() throws Exception{
36
assertEquals(1, time.getSecond());
37
}
38
39
+ @Test
40
+ public void testTimeOfDayDeserializerWithFraction() throws Exception{
41
+ TimeOfDay time = TimeOfDay.parse("12:30:44.0000000");
42
+ assertEquals(12, time.getHour());
43
+ assertEquals(30, time.getMinute());
44
+ assertEquals(44, time.getSecond());
45
+ }
46
+
47
0 commit comments