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

net.serenitybdd.junit5.SerenityTestExecutionSummary Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
package net.serenitybdd.junit5;

import org.junit.platform.launcher.TestIdentifier;
import org.junit.platform.launcher.TestPlan;

import java.util.concurrent.atomic.AtomicInteger;

public class SerenityTestExecutionSummary {
    public AtomicInteger containersSucceeded = new AtomicInteger(0);
    public AtomicInteger testsSucceeded = new AtomicInteger(0) ;
    public AtomicInteger containersAborted = new AtomicInteger(0);
    public AtomicInteger testsAborted = new AtomicInteger(0);
    public AtomicInteger containersFailed = new AtomicInteger(0);
    public AtomicInteger testsFailed = new AtomicInteger(0);

    public SerenityTestExecutionSummary(TestPlan testPlan) {
    }

    public void addFailure(TestIdentifier testIdentifier, Throwable throwable) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy