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

TestLink.StepResult Maven / Gradle / Ivy

package TestLink;

/**
 * Class to hold test step result information
 */
public class StepResult {

    public String name;

    public String status;

    /**
     * Get step name
     * @return a string step name
     */
    public String getName() {
        return this.name;
    }

    /**
     * Get step result
     * @return a string step result
     */
    public String getStatus() {
        return this.status;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy