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

com.capitalone.dashboard.api.domain.TestSet Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package com.capitalone.dashboard.api.domain;

import java.net.URI;

/**
 * This class will get the details from a Test Set
 */
public class TestSet extends VersionableIssue {

    public TestSet(URI self, String key, Long id) {
        super(self, key, id);
    }

    @Override
    public TestSet cloneTest() throws CloneNotSupportedException {
        //TODO: Implement TestSet later on
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy