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

org.testng.internal.Arguments Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal;

import java.util.Map;
import org.testng.ITestNGMethod;

public class Arguments {

  protected final Object instance;
  protected final ITestNGMethod tm;
  protected final Map params;

  protected Arguments(Object instance, ITestNGMethod tm, Map params) {
    this.instance = instance;
    this.tm = tm;
    this.params = params;
  }

  public Object getInstance() {
    return instance;
  }

  public ITestNGMethod getTestMethod() {
    return tm;
  }

  public Map getParameters() {
    return params;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy