HomeSort by relevance Sort by last modified time
    Searched refs:TEST_2007_07_15 (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/test/java/time/test/java/time/
TestLocalDate.java 81 private LocalDate TEST_2007_07_15;
85 TEST_2007_07_15 = LocalDate.of(2007, 7, 15);
122 LocalDate t = TEST_2007_07_15.with(YEAR, 2007);
123 assertSame(t, TEST_2007_07_15);
128 LocalDate t = TEST_2007_07_15.withYear(2007);
129 assertSame(t, TEST_2007_07_15);
134 LocalDate t = TEST_2007_07_15.withMonth(7);
135 assertSame(t, TEST_2007_07_15);
140 LocalDate t = TEST_2007_07_15.withDayOfMonth(15);
141 assertSame(t, TEST_2007_07_15);
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/serial/
TCKLocalDateSerialization.java 76 private LocalDate TEST_2007_07_15;
80 TEST_2007_07_15 = LocalDate.of(2007, 7, 15);
87 assertSerializable(TEST_2007_07_15);
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKLocalDate.java 144 private static LocalDate TEST_2007_07_15;
154 TEST_2007_07_15 = LocalDate.of(2007, 7, 15);
169 TemporalAccessor[] array = {TEST_2007_07_15, LocalDate.MAX, LocalDate.MIN, };
342 assertEquals(TEST_2007_07_15, LocalDate.of(2007, Month.JULY, 15));
378 check(TEST_2007_07_15, 2007, 7, 15);
609 assertEquals(TEST_2007_07_15.isSupported((TemporalField) null), false);
610 assertEquals(TEST_2007_07_15.isSupported(ChronoField.NANO_OF_SECOND), false);
611 assertEquals(TEST_2007_07_15.isSupported(ChronoField.NANO_OF_DAY), false);
612 assertEquals(TEST_2007_07_15.isSupported(ChronoField.MICRO_OF_SECOND), false);
613 assertEquals(TEST_2007_07_15.isSupported(ChronoField.MICRO_OF_DAY), false)
    [all...]

Completed in 79 milliseconds