net.jqwik.engine.properties.shrinking.PropertyShrinkingResult Maven / Gradle / Ivy
package net.jqwik.engine.properties.shrinking;
import java.util.*;
public class PropertyShrinkingResult {
private final List values;
private final int steps;
private final Throwable throwable;
public PropertyShrinkingResult(List values, int steps, Throwable throwable) {
this.values = values;
this.steps = steps;
this.throwable = throwable;
}
public List values() {
return values;
}
public Optional throwable() {
return Optional.ofNullable(throwable);
}
public int steps() {
return steps;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy