Search in sources :

Example 81 with LocalDate

use of java.time.LocalDate in project jdk8u_jdk by JetBrains.

the class TCKLocalDate method test_plusDays_overLeapYears.

@Test
public void test_plusDays_overLeapYears() {
    LocalDate t = TEST_2007_07_15.plusYears(-1).plusDays(365 + 366);
    assertEquals(t, LocalDate.of(2008, 7, 15));
}
Also used : LocalDate(java.time.LocalDate) Test(org.testng.annotations.Test)

Example 82 with LocalDate

use of java.time.LocalDate in project jdk8u_jdk by JetBrains.

the class TCKLocalDate method test_minusWeeks_overYears.

@Test
public void test_minusWeeks_overYears() {
    LocalDate t = LocalDate.of(2008, 7, 13).minusWeeks(52);
    assertEquals(t, TEST_2007_07_15);
}
Also used : LocalDate(java.time.LocalDate) Test(org.testng.annotations.Test)

Example 83 with LocalDate

use of java.time.LocalDate in project jdk8u_jdk by JetBrains.

the class TCKLocalDate method test_plusMonths_long_negative.

@Test
public void test_plusMonths_long_negative() {
    LocalDate t = TEST_2007_07_15.plusMonths(-1);
    assertEquals(t, LocalDate.of(2007, 6, 15));
}
Also used : LocalDate(java.time.LocalDate) Test(org.testng.annotations.Test)

Example 84 with LocalDate

use of java.time.LocalDate in project jdk8u_jdk by JetBrains.

the class TCKLocalDate method test_plusDays_negativeOverYears.

@Test
public void test_plusDays_negativeOverYears() {
    LocalDate t = TEST_2007_07_15.plusDays(-730);
    assertEquals(t, LocalDate.of(2005, 7, 15));
}
Also used : LocalDate(java.time.LocalDate) Test(org.testng.annotations.Test)

Example 85 with LocalDate

use of java.time.LocalDate in project jdk8u_jdk by JetBrains.

the class TCKLocalDate method factory_parse_formatter.

//-----------------------------------------------------------------------
// parse(DateTimeFormatter)
//-----------------------------------------------------------------------
@Test
public void factory_parse_formatter() {
    DateTimeFormatter f = DateTimeFormatter.ofPattern("y M d");
    LocalDate test = LocalDate.parse("2010 12 3", f);
    assertEquals(test, LocalDate.of(2010, 12, 3));
}
Also used : DateTimeFormatter(java.time.format.DateTimeFormatter) LocalDate(java.time.LocalDate) Test(org.testng.annotations.Test)

Aggregations

LocalDate (java.time.LocalDate)1513 Test (org.junit.Test)472 Test (org.testng.annotations.Test)372 LocalDateTime (java.time.LocalDateTime)155 LocalTime (java.time.LocalTime)126 Date (java.util.Date)99 DateTimeFormatter (java.time.format.DateTimeFormatter)96 Ignore (org.junit.Ignore)94 ArrayList (java.util.ArrayList)87 BigDecimal (java.math.BigDecimal)69 Instant (java.time.Instant)56 ZonedDateTime (java.time.ZonedDateTime)55 Test (org.junit.jupiter.api.Test)54 List (java.util.List)50 AbstractPerunIntegrationTest (cz.metacentrum.perun.core.AbstractPerunIntegrationTest)46 HashMap (java.util.HashMap)44 Member (cz.metacentrum.perun.core.api.Member)41 ZoneId (java.time.ZoneId)40 TemporalField (java.time.temporal.TemporalField)40 Attribute (cz.metacentrum.perun.core.api.Attribute)39