All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cucumber.examples.java.calculator.DateCalculator Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package cucumber.examples.java.calculator;

import java.util.Date;

public class DateCalculator {
    private Date now;

    public DateCalculator(Date now) {
        this.now = now;
    }

    public String isDateInThePast(Date date) {
        return (date.before(now)) ? "yes" : "no";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy