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

com.hp.octane.integrations.services.testexecution.TestExecutionContext Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy