com.ats.element.test.AtsProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ats-automated-testing Show documentation
Show all versions of ats-automated-testing Show documentation
Code generator library to create and execute GUI automated tests
The newest version!
package com.ats.element.test;
public class AtsProperty {
private String[] listName = {""};
public AtsProperty(String ...prop) {
this.listName = prop;
}
@Override
public boolean equals(Object obj) {
for(String s : listName) {
if(s.equals(obj.toString())) {
return true;
}
}
return false;
}
@Override
public String toString() {
return listName[0];
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy