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

org.jasmine.Notifier Maven / Gradle / Ivy

The newest version!
package org.jasmine;

import java.util.Set;

public interface Notifier {
    void started();

    void pass(Identifier identifier, String description);

    void fail(Identifier identifier, String description, Set failures);

    void finished();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy