* override this methods to add more values. By default, it loads with two bad strings,
* and one good string.
*/
public InputSpecification getInputSpecification() {
InputSpecification inputSpecification = new InputSpecification();
InputField field = inputSpecification.field("input");
field.setValue("Good input");
field.setValue("This doesnt work");
field.setValue("Neither does this");
return inputSpecification;
}