org.quicktheories.impl.ExtendedRandomnessSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quicktheories Show documentation
Show all versions of quicktheories Show documentation
Property based testing for Java
package org.quicktheories.impl;
import org.quicktheories.core.RandomnessSource;
/**
* RandomnessSource with additional operations - kept separate to allow
* classes it depends on to remain package private
*/
public interface ExtendedRandomnessSource extends RandomnessSource {
long tryNext(Constraint constraints);
void add(Precursor other);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy