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

io.quarkus.dev.testing.results.TestRunResultsInterface Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show newest version
package io.quarkus.dev.testing.results;

import java.util.Map;

public interface TestRunResultsInterface {
    long getId();

    Map getResults();

    long getStartedTime();

    long getCompletedTime();

    long getTotalTime();

    long getPassedCount();

    long getFailedCount();

    long getSkippedCount();

    long getCurrentPassedCount();

    long getCurrentFailedCount();

    long getCurrentSkippedCount();

    long getTotalCount();

    long getCurrentTotalCount();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy