Package at.jku.ssw.fp.sect11_3.check4j
Interface Shrinker<A>
-
- Type Parameters:
A
- the type of test values
public interface Shrinker<A>
Interface for shrinkers. Shrinkers provide shrinked values in a stream.- Author:
- Herbert Praehofer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stream<A>
shrink(A x)
Returns a stream of shrunk values of the given value.
-