com.kremlovskyi.combinationsgenerator.xml.Constraints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of combinationsgenerator Show documentation
Show all versions of combinationsgenerator Show documentation
A test library to ease generating test input combinations
The newest version!
package com.kremlovskyi.combinationsgenerator.xml;
import java.util.Arrays;
import java.util.List;
public class Constraints extends AbstractElement {
public Constraints(ParametersParser parametersParser) {
super(parametersParser);
}
@Override
public String getElementName() {
return "constraints";
}
@Override
public List getAttributesNames() {
return Arrays.asList("param1", "param2");
}
@Override
public String getValueName() {
return "text";
}
}