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

com.chutneytesting.execution.api.report.surefire.CampaignReportFolder Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.chutneytesting.execution.api.report.surefire;

import java.util.Set;

/**
 * Represents data needed to create campaign-named folder in surefire reports ZIP.
 */
class CampaignReportFolder {
    final String name;
    final Set scenariosReport;

    CampaignReportFolder(String name, Set scenariosReport) {
        this.name = name;
        this.scenariosReport = scenariosReport;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy