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

hope.kola.contract.file.TestSuiteMetadata Maven / Gradle / Ivy

There is a newer version: 1.1.2-RELEASE
Show newest version
package hope.kola.contract.file;

import hope.kola.contract.Feature;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

public class TestSuiteMetadata {
  /** Path to the file. */
  private final Path path;

  private final List features;

  private String possiblePkgName;

  public TestSuiteMetadata(Path path, Collection features) {
    this.path = path;
    this.features = new ArrayList<>(features);
  }

  public Path path() {
    return path;
  }

  public List features() {
    return features;
  }

  public void possiblePkgName(String possiblePkgName) {
    this.possiblePkgName = possiblePkgName;
  }

  public String possiblePkgName() {
    return possiblePkgName;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy