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

net.jqwik.engine.recording.TestRunRecorder Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.jqwik.engine.recording;

public interface TestRunRecorder extends AutoCloseable {
	void record(TestRun testRun);

	default void close() {}

	TestRunRecorder NULL = testRun -> { };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy