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

com.hp.octane.integrations.executor.TestToRunDataCollection Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
package com.hp.octane.integrations.executor;

import java.util.ArrayList;
import java.util.List;

import static com.hp.octane.integrations.executor.TestToRunData.TESTS_TO_RUN_JSON_VERSION;

public class TestToRunDataCollection {

    String version = TESTS_TO_RUN_JSON_VERSION;
    List testsToRun = new ArrayList<>();

    public List getTestsToRun() {
        return testsToRun;
    }

    public String getVersion() {
        return version;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy