robotframework-2.7.7.atest.testdata.variables.DynamicJavaClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robotframework Show documentation
Show all versions of robotframework Show documentation
High level test automation framework
The newest version!
import java.util.Map;
import java.util.HashMap;
public class DynamicJavaClass {
public Map getVariables(String arg1, String arg2) {
HashMap vars = new HashMap();
String[] array = {arg1, arg2};
vars.put("dynamic java string", arg1 + " " + arg2);
vars.put("LIST__dynamic java list", array);
return vars;
}
}