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

com.regnosys.testing.reports.ReportTestResult 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.35.2
Show newest version
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