com.regnosys.testing.reports.ReportTestResult 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.reports;
public class ReportTestResult {
private final String inputFileName;
private final ExpectedAndActual keyValue;
private final ExpectedAndActual report;
private final ExpectedAndActual validationFailures;
public ReportTestResult(String inputFileName,
ExpectedAndActual keyValue,
ExpectedAndActual report,
ExpectedAndActual validationFailures) {
this.inputFileName = inputFileName;
this.keyValue = keyValue;
this.report = report;
this.validationFailures = validationFailures;
}
public String getInputFileName() {
return inputFileName;
}
public ExpectedAndActual getKeyValue() {
return keyValue;
}
public ExpectedAndActual getReport() {
return report;
}
public ExpectedAndActual getValidationFailures() {
return validationFailures;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy