
js.DateStub.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtest Show documentation
Show all versions of xtest Show documentation
A TDD framework to make coding drven by specifications easier
class DateStub extends Date {
static fixedDate = null;
constructor(...args) {
if (args.length === 0 && DateStub.fixedDate) {
return DateStub.fixedDate;
} else {
super(...args);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy