MCPcopy Create free account
hub / github.com/MenoData/Time4J / isBefore

Method isBefore

base/src/test/java/net/time4j/AnnualDateTest.java:86–94  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

84 }
85
86 @Test
87 public void isBefore() {
88 assertThat(
89 AnnualDate.of(Month.FEBRUARY, 29).isBefore(AnnualDate.of(2, 29)),
90 is(false));
91 assertThat(
92 AnnualDate.of(Month.FEBRUARY, 28).isBefore(AnnualDate.of(2, 29)),
93 is(true));
94 }
95
96 @Test
97 public void isAfter() {

Callers

nothing calls this directly

Calls 2

ofMethod · 0.95
isBeforeMethod · 0.65

Tested by

no test coverage detected