com.github.ngeor.yak4j.InvalidFieldExpectation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yak4j-spring-test-utils Show documentation
Show all versions of yak4j-spring-test-utils Show documentation
yak shaving for Java: Testing utilities for Spring
package com.github.ngeor.yak4j;
/**
* An expectation about an invalid field.
*/
@SuppressWarnings({"unused", "WeakerAccess"})
public class InvalidFieldExpectation {
private final String field;
private final String code;
InvalidFieldExpectation(String field, String code) {
this.field = field;
this.code = code;
}
public String getField() {
return field;
}
public String getCode() {
return code;
}
}