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

net.thucydides.plugins.jira.model.NamedTestResult Maven / Gradle / Ivy

There is a newer version: 0.9.268
Show newest version
package net.thucydides.plugins.jira.model;

import net.thucydides.core.model.TestResult;

public class NamedTestResult {

    private final String testName;
    
    private final TestResult testResult;

    public NamedTestResult(String testName, TestResult testResult) {
        this.testName = testName;
        this.testResult = testResult;
    }

    public String getTestName() {
        return testName;
    }

    public TestResult getTestResult() {
        return testResult;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy