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

com.regnosys.testing.ValidationReport Maven / Gradle / Ivy

Go to download

Rune Testing is a java library that is utilised by Rosetta Code Generators and models expressed in the Rosetta DSL.

There is a newer version: 11.31.0
Show newest version
package com.regnosys.testing;

import java.util.List;

public class ValidationReport {
    private final boolean passed;
    private final List errors;

    public ValidationReport(boolean passed, List errors) {
        this.passed = passed;
        this.errors = errors;
    }

    public boolean getPassed() {
        return passed;
    }

    public List getErrors() {
        return this.errors;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy