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

robotframework-2.7.7.atest.testdata.variables.DynamicJavaClass Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy