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

net.jqwik.api.lifecycle.ShrunkFalsifiedSample Maven / Gradle / Ivy

There is a newer version: 1.9.2
Show newest version
package net.jqwik.api.lifecycle;

import org.apiguardian.api.*;

import static org.apiguardian.api.API.Status.*;

/**
 * A shrunk falsified sample is a {@linkplain FalsifiedSample} that results
 * from shrinking.
 *
 * @see PropertyExecutionResult#originalSample()
 */
@API(status = EXPERIMENTAL, since = "1.3.5")
public interface ShrunkFalsifiedSample extends FalsifiedSample {

	/**
	 * @return number of steps needed to shrink from original sample to this one
	 */
	int countShrinkingSteps();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy