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

hudson.tasks.junit.MetaTabulatedResult Maven / Gradle / Ivy

package hudson.tasks.junit;

import java.util.Collection;
import java.util.List;

/**
 * {@link TabulatedResult} whose immediate children
 * are other {@link TabulatedResult}s.
 *
 * @author Kohsuke Kawaguchi
 */
abstract class MetaTabulatedResult extends TabulatedResult {
    public abstract String getChildTitle();

    /**
     * All failed tests.
     */
    public abstract List getFailedTests();

    public abstract Collection getChildren();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy