io.quarkus.dev.testing.results.TestRunResultsInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-development-mode-spi Show documentation
Show all versions of quarkus-development-mode-spi Show documentation
SPI classes for Quarkus Development mode.
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