robotframework-2.7.7.atest.testresources.testlibs.InvalidSignatureArgDocDynamicJavaLibrary 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!
public class InvalidSignatureArgDocDynamicJavaLibrary {
public String[] getKeywordNames() {
return new String[] {"keyword"};
}
public Object runKeyword(String name, Object[] args) {
return null;
}
public String getKeywordDocumentation(String name, Object invalid) {
return "foo";
}
public String[] getKeywordArguments(String name, Object invalid) {
return new String[0];
}
}