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

org.tudalgo.algoutils.student.test.StudentTestResultMessageProvider Maven / Gradle / Ivy

The newest version!
package org.tudalgo.algoutils.student.test;

/**
 * A functional interface used to generate the message for a {@link StudentTestResult}.
 *
 * @param  The type of the object that was tested.
 */
@FunctionalInterface
public interface StudentTestResultMessageProvider {
    /**
     * Generates the message for the given {@code result}.
     *
     * @param result The {@link StudentTestResult} to generate the message for.
     * @return The generated message.
     */
    String getMessage(StudentTestResult result);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy