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

org.jgotesting.traits.Failing Maven / Gradle / Ivy

The newest version!
package org.jgotesting.traits;

/**
 * Documenting interface for failures.
 */
public interface Failing {
    /**
     * marks the function as having failed but continues execution
     */
    T fail(Object... args);

    /**
     * equivalent to logf followed by fail
     */
    T failf(String fmt, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy