Home
last modified time | relevance | path

Searched refs:TEST_07_15 (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKMonthDay.java110 private static MonthDay TEST_07_15; field in TCKMonthDay
114 TEST_07_15 = MonthDay.of(7, 15); in setUp()
120 TemporalAccessor[] array = {TEST_07_15, }; in samples()
209 assertEquals(TEST_07_15, MonthDay.of(Month.JULY, 15)); in factory_intMonth()
230 check(TEST_07_15, 7, 15); in factory_ints()
257 assertEquals(MonthDay.from(LocalDate.of(2007, 7, 15)), TEST_07_15); in test_factory_CalendricalObject()
381 assertEquals(TEST_07_15.isSupported((TemporalField) null), false); in test_isSupported_TemporalField()
382 assertEquals(TEST_07_15.isSupported(ChronoField.NANO_OF_SECOND), false); in test_isSupported_TemporalField()
383 assertEquals(TEST_07_15.isSupported(ChronoField.NANO_OF_DAY), false); in test_isSupported_TemporalField()
384 assertEquals(TEST_07_15.isSupported(ChronoField.MICRO_OF_SECOND), false); in test_isSupported_TemporalField()
[all …]
/libcore/ojluni/src/test/java/time/tck/java/time/serial/
DTCKMonthDaySerialization.java77 private MonthDay TEST_07_15; field in TCKMonthDaySerialization
81 TEST_07_15 = MonthDay.of(7, 15); in setUp()
87 assertSerializable(TEST_07_15); in test_serialization()
/libcore/ojluni/src/test/java/time/test/java/time/
DTestMonthDay.java79 private MonthDay TEST_07_15; field in TestMonthDay
83 TEST_07_15 = MonthDay.of(7, 15); in setUp()