com.natpryce.makeiteasy.SequenceDonor 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;
public abstract class SequenceDonor {
private long count = 0;
public T value() {
return valueWithIndex(count++);
}
protected abstract T valueWithIndex(long l);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy