SolrGen<Boolean> |
BooleansDSL.all() |
Generates either true or false randomly.
|
SolrGen<Date> |
DatesDSL.all() |
|
SolrGen<Double> |
DoublesDSL.all() |
Generates Doubles inclusively bounded below by Double.NEGATIVE_INFINITY and above by
Double.POSITIVE_INFINITY.
|
SolrGen<Float> |
FloatsDSL.all() |
Generates Floats inclusively bounded below by Float.NEGATIVE_INFINITY and above by
Float.POSITIVE_INFINITY.
|
SolrGen<Integer> |
IntegersDSL.all() |
Generates all possible integers in Java bounded below by Integer.MIN_VALUE and above by
Integer.MAX_VALUE.
|
SolrGen<Long> |
LongsDSL.all() |
Generates all possible Longs in Java bounded below by Long.MIN_VALUE and above by
Long.MAX_VALUE.
|
SolrGen<Integer> |
IntegersDSL.allPositive() |
Generates all possible positive integers in Java, bounded above by Integer.MAX_VALUE.
|
SolrGen<Integer> |
IntegersDSL.allPositiveWithMaxCardinality(int maxCardinality) |
All positive with max cardinality solr gen.
|
SolrGen<Integer> |
IntegersDSL.allWithMaxCardinality(int maxCardinality) |
All with max cardinality solr gen.
|
SolrGen<Double> |
DoublesDSL.between(double minInclusive,
double maxInclusive) |
Generates Doubles inclusively between two bounds
|
SolrGen<Integer> |
IntegersDSL.between(int startInclusive,
int endInclusive) |
Generates Integers within the interval specified with an inclusive lower and upper bound.
|
SolrGen<Integer> |
IntegersDSL.between(int startInclusive,
int endInclusive,
int maxCardinality) |
Generates Integers within the interval specified with an inclusive lower and upper bound.
|
SolrGen<Long> |
LongsDSL.between(long startInclusive,
long endInclusive) |
Generates Longs within the interval specified with an inclusive lower and upper bound.
|
SolrGen<T> |
SolrGen.describedAs(String description) |
Described as solr gen.
|
SolrGen<T> |
SolrGen.describedAs(org.quicktheories.api.AsString<T> asString) |
|
SolrGen<Double> |
DoublesDSL.fromZeroToOne() |
Generates Doubles inclusively bounded below by zero and above by one.
|
SolrGen<Integer> |
IntegersDSL.incrementing() |
Incrementing SolrGen.
|
<R> SolrGen<R> |
SolrGen.map(Function<? super T,? extends R> mapper,
Class<?> type) |
Map solr gen.
|
SolrGen<T> |
SolrGen.mix(org.quicktheories.core.Gen<T> rhs,
int weight,
Class<?> type) |
Mix solr gen.
|
SolrGen<T> |
SolrGen.mix(org.quicktheories.core.Gen<T> rhs,
Class<?> type) |
Mix solr gen.
|
SolrGen<String> |
StringsDSL.RealisticUnicodeGeneratorBuilder.multi(int count) |
Multi solr gen.
|
SolrGen<String> |
StringsDSL.WordListGeneratorBuilder.multi(int count) |
Multi solr gen.
|
SolrGen<Double> |
DoublesDSL.negative() |
Generates Doubles inclusively bounded below by Double.NEGATIVE_INFINITY and above by a value
very close to zero on the negative side.
|
SolrGen<String> |
StringsDSL.numeric() |
Generates integers as Strings, and shrinks towards "0".
|
SolrGen<String> |
StringsDSL.numericBetween(int startInclusive,
int endInclusive) |
Generates integers within the interval as Strings.
|
SolrGen<String> |
StringsDSL.StringGeneratorBuilder.ofFixedNumberOfCodePoints(int codePoints) |
Generates Strings of a fixed number of code points.
|
SolrGen<String> |
StringsDSL.StringGeneratorBuilder.ofLength(int fixedLength) |
Generates Strings of a fixed length.
|
SolrGen<String> |
StringsDSL.StringGeneratorBuilder.ofLengthBetween(int minLength,
int maxLength) |
Generates Strings of length bounded between minLength and maxLength inclusively.
|
SolrGen<String> |
StringsDSL.RealisticUnicodeGeneratorBuilder.ofOne() |
Of one solr gen.
|
SolrGen<String> |
StringsDSL.WordListGeneratorBuilder.ofOne() |
Of one solr gen.
|
SolrGen<Double> |
DoublesDSL.positive() |
Generates Doubles inclusively bounded below by a value very close to zero on the positive side
and above by Double.POSITIVE_INFINITY.
|
SolrGen<Integer> |
IntegersDSL.IntegerDomainBuilder.upTo(int endExclusive) |
Generates integers within the interval specified with an inclusive lower bound and exclusive
upper bound.
|
SolrGen<Long> |
LongsDSL.LongDomainBuilder.upTo(long endExclusive) |
Generates Longs within the interval specified with an inclusive lower bound and exclusive
upper bound.
|
SolrGen<Double> |
DoublesDSL.DoubleDomainBuilder.upToAndIncluding(double endInclusive) |
Generates within the interval specified with an inclusive lower and upper bound.
|
SolrGen<Integer> |
IntegersDSL.IntegerDomainBuilder.upToAndIncluding(int endInclusive) |
Generates integers within the interval specified with an inclusive lower and upper bound.
|
SolrGen<Long> |
LongsDSL.LongDomainBuilder.upToAndIncluding(long endInclusive) |
Generates Longs within the interval specified with an inclusive lower and upper bound.
|
SolrGen<T> |
SolrGen.withDistribution(Distribution distribution) |
With distribution solr gen.
|
SolrGen<Date> |
DatesDSL.withMilliseconds(long millisecondsFromEpoch) |
Generates Dates inclusively bounded between January 1, 1970, 00:00:00 GMT and new
Date(milliSecondsFromEpoch).
|
SolrGen<Date> |
DatesDSL.withMillisecondsBetween(long millisecondsFromEpochStartInclusive,
long millisecondsFromEpochEndInclusive) |
Generates Dates inclusively bounded between new Date(millisecondsFromEpochStartInclusive) and
new Date(millisecondsFromEpochEndInclusive).
|