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

ru.perveevm.polygon.api.entities.ValidatorTest Maven / Gradle / Ivy

package ru.perveevm.polygon.api.entities;

import ru.perveevm.polygon.api.entities.enums.ValidatorTestVerdict;

/**
 * Represents a validator’s test for the problem.
 *
 * @author Perveev Mike ([email protected])
 */
public class ValidatorTest {
    private Integer index;
    private String input;
    private ValidatorTestVerdict expectedVerdict;
    private String testset;
    private String group;

    /**
     * @return Validator test index.
     */
    public Integer getIndex() {
        return index;
    }

    /**
     * @return Validator test input.
     */
    public String getInput() {
        return input;
    }

    /**
     * @return Expected verdict for the validator test.
     */
    public ValidatorTestVerdict getExpectedVerdict() {
        return expectedVerdict;
    }

    /**
     * @return Validator test set (may be null).
     */
    public String getTestset() {
        return testset;
    }

    /**
     * @return Validator test group (may be null).
     */
    public String getGroup() {
        return group;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy