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

com.arextest.diff.model.script.ScriptMethodContext Maven / Gradle / Ivy

There is a newer version: 0.2.15
Show newest version
package com.arextest.diff.model.script;

import com.arextest.diff.model.log.NodeEntity;
import java.util.List;

public class ScriptMethodContext {

  private List basePath;
  private List testPath;

  public List getBasePath() {
    return basePath;
  }

  public void setBasePath(List basePath) {
    this.basePath = basePath;
  }

  public List getTestPath() {
    return testPath;
  }

  public void setTestPath(List testPath) {
    this.testPath = testPath;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy