jscover.util.DateTimeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JSCover Show documentation
Show all versions of JSCover Show documentation
JSCover is a tool that measures code coverage for JavaScript programs.
package jscover.util;
import java.util.Date;
public class DateTimeImpl implements DateTime {
public Date getDate() {
return new Date();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy