All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ngeor.yak4j.InvalidFieldExpectation Maven / Gradle / Ivy

There is a newer version: 0.22.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy