robotframework-2.7.7.atest.testdata.libdoc.NoArgConstructor 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!
/**
* No inits here!
*/
public class NoArgConstructor {
public NoArgConstructor() {
}
private NoArgConstructor(String foo) {
}
/**
* The only lonely keyword.
*/
public void keyword(String arg1, int arg2) {
}
}