import org.fest.assertions.api.Assertions;
import org.joda.time.LocalDate;
public class JodaTimeAssertionExample {
public static void main(String[] args) {
LocalDate currentDate = new LocalDate();
LocalDate futureDate = currentDate.plusDays(7);
Assertions.assertThat(currentDate).isBeforeOrEqualTo(futureDate);
}
}