com.hp.octane.integrations.services.testexecution.TestExecutionContext Maven / Gradle / Ivy
package com.hp.octane.integrations.services.testexecution;
import com.hp.octane.integrations.dto.entities.Entity;
import java.util.List;
public class TestExecutionContext {
private Entity testRunner;
private String testsToRun;
private List tests;
private TestExecutionIdentifierType identifierType;
private String identifier;
public TestExecutionContext(Entity testRunner, String testsToRun, List tests, TestExecutionIdentifierType identifierType, String identifier) {
this.testRunner = testRunner;
this.identifierType = identifierType;
this.testsToRun = testsToRun;
this.tests = tests;
this.identifier = identifier;
}
public Entity getTestRunner() {
return testRunner;
}
public TestExecutionIdentifierType getIdentifierType() {
return identifierType;
}
public String getTestsToRun() {
return testsToRun;
}
public String getIdentifier() {
return identifier;
}
public List getTests() {
return tests;
}
}