
smallcheck.generators.BoolGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-smallcheck Show documentation
Show all versions of java-smallcheck Show documentation
An implementation of SmallCheck for Java as a JUnit extension.
The newest version!
package smallcheck.generators;
import java.util.stream.Stream;
/**
*
*/
public class BoolGen extends SeriesGen {
@Override
public Stream generate(int depth) {
return Stream.of(false, true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy