Class TestRunResults
- java.lang.Object
-
- io.quarkus.deployment.dev.testing.TestRunResults
-
public class TestRunResults extends Object
-
-
Constructor Summary
Constructors Constructor Description TestRunResults(long id, ClassScanResult trigger, boolean full, long started, long completed, Map<String,TestClassResult> results)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCompletedTime()longgetCurrentFailedCount()Map<String,TestClassResult>getCurrentFailing()longgetCurrentPassedCount()Map<String,TestClassResult>getCurrentPassing()longgetCurrentSkippedCount()longgetCurrentTotalCount()longgetFailedCount()List<TestClassResult>getFailing()Map<String,TestClassResult>getHistoricFailing()Map<String,TestClassResult>getHistoricPassing()longgetId()longgetPassedCount()List<TestClassResult>getPassing()Map<String,TestClassResult>getResults()List<TestClassResult>getSkipped()longgetSkippedCount()longgetStartedTime()longgetTotalCount()longgetTotalTime()ClassScanResultgetTrigger()booleanisFull()
-
-
-
Constructor Detail
-
TestRunResults
public TestRunResults(long id, ClassScanResult trigger, boolean full, long started, long completed, Map<String,TestClassResult> results)
-
-
Method Detail
-
getId
public long getId()
-
getTrigger
public ClassScanResult getTrigger()
-
isFull
public boolean isFull()
-
getResults
public Map<String,TestClassResult> getResults()
-
getCurrentFailing
public Map<String,TestClassResult> getCurrentFailing()
-
getHistoricFailing
public Map<String,TestClassResult> getHistoricFailing()
-
getCurrentPassing
public Map<String,TestClassResult> getCurrentPassing()
-
getHistoricPassing
public Map<String,TestClassResult> getHistoricPassing()
-
getStartedTime
public long getStartedTime()
-
getCompletedTime
public long getCompletedTime()
-
getTotalTime
public long getTotalTime()
-
getFailing
public List<TestClassResult> getFailing()
-
getPassing
public List<TestClassResult> getPassing()
-
getSkipped
public List<TestClassResult> getSkipped()
-
getPassedCount
public long getPassedCount()
-
getFailedCount
public long getFailedCount()
-
getSkippedCount
public long getSkippedCount()
-
getCurrentPassedCount
public long getCurrentPassedCount()
-
getCurrentFailedCount
public long getCurrentFailedCount()
-
getCurrentSkippedCount
public long getCurrentSkippedCount()
-
getTotalCount
public long getTotalCount()
-
getCurrentTotalCount
public long getCurrentTotalCount()
-
-