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

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

package hudson.tasks.junit;

import hudson.model.Build;
import hudson.model.ModelObject;

/**
 * Base class for all test result objects.
 *
 * @author Kohsuke Kawaguchi
 */
public abstract class TestObject implements ModelObject {
    public abstract Build getOwner();

    /**
     * Gets the counter part of this {@link TestObject} in the previous run.
     *
     * @return null
     *      if no such counter part exists.
     */
    public abstract TestObject getPreviousResult();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy