All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.jqwik.engine.properties.shrinking.PropertyShrinkingResult Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
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