jio.test.pbt.TestSuccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jio-test Show documentation
Show all versions of jio-test Show documentation
JIO test library based on Property Based Testing and Java Flight Recording Debuggers
package jio.test.pbt;
/**
* Represents the successful execution of a property test. Instances of this class indicate that a property test has
* passed without any issues.
*
* This class provides a singleton instance, {@link TestResult#SUCCESS}, which must be used to represent a successful
* property test result.
*
*/
public final class TestSuccess implements TestResult {
TestSuccess() {
}
}