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

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

The newest version!
/*
 * SPDX-FileCopyrightText: 2017-2024 Enedis
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 */

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