com.natpryce.makeiteasy.SameValueDonor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of make-it-easy Show documentation
Show all versions of make-it-easy Show documentation
A tiny framework that makes it easy to write Test Data Builders in Java
package com.natpryce.makeiteasy;
/**
* Always gives the sale value.
*/
public class SameValueDonor implements Donor {
private final T value;
public SameValueDonor(T value) {
this.value = value;
}
@Override
public T value() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy