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

jio.test.pbt.TestResult Maven / Gradle / Ivy

Go to download

JIO test library based on Property Based Testing and Java Flight Recording Debuggers

There is a newer version: 3.0.0-RC2
Show newest version
package jio.test.pbt;

/**
 * Represents the result of the execution of a property test. This sealed interface has three implementations:
 * TestException, TestFailure, and TestSuccess.
 */
public sealed interface TestResult permits TestFailure, TestSuccess {

  /**
   * A singleton that represents a successful execution of a property test.
   */
  TestSuccess SUCCESS = new TestSuccess();
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy