com.regnosys.testing.ValidationReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rosetta-testing Show documentation
Show all versions of rosetta-testing Show documentation
Rune Testing is a java library that is utilised by Rosetta Code Generators and models expressed in the Rosetta DSL.
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