Package de.dagere.peass.ci.logs.rts
Class RTSLogSummary
- java.lang.Object
-
- de.dagere.peass.ci.logs.rts.RTSLogSummary
-
public class RTSLogSummary extends Object
This summarizes logs for showing information in the regular step action. Currently, it only contains a boolean, but it is expected to contain more information for the end user soon.- Author:
- reichelt
-
-
Constructor Summary
Constructors Constructor Description RTSLogSummary(boolean errorInCurrentCommitOccured, boolean errorInPredecessorCommitOccured, boolean commitContainsSuccess, boolean predecessorContainsSuccess, boolean commitContainsParametrizedwhithoutIndex, boolean predecessorContainsParametrizedwhithoutIndex)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RTSLogSummary
createLogSummary(Map<de.dagere.nodeDiffDetector.data.TestMethodCall,RTSLogData> rtsVmRuns, Map<de.dagere.nodeDiffDetector.data.TestMethodCall,RTSLogData> rtsVmRunsPredecessor)
boolean
isCommitContainsParametrizedwhithoutIndex()
boolean
isCommitContainsSuccess()
boolean
isErrorInCurrentCommitOccured()
boolean
isErrorInPredecessorCommitOccured()
boolean
isPredecessorContainsParametrizedwhithoutIndex()
boolean
isPredecessorContainsSuccess()
-
-
-
Constructor Detail
-
RTSLogSummary
public RTSLogSummary(boolean errorInCurrentCommitOccured, boolean errorInPredecessorCommitOccured, boolean commitContainsSuccess, boolean predecessorContainsSuccess, boolean commitContainsParametrizedwhithoutIndex, boolean predecessorContainsParametrizedwhithoutIndex)
-
-
Method Detail
-
createLogSummary
public static RTSLogSummary createLogSummary(Map<de.dagere.nodeDiffDetector.data.TestMethodCall,RTSLogData> rtsVmRuns, Map<de.dagere.nodeDiffDetector.data.TestMethodCall,RTSLogData> rtsVmRunsPredecessor)
-
isErrorInCurrentCommitOccured
public boolean isErrorInCurrentCommitOccured()
-
isErrorInPredecessorCommitOccured
public boolean isErrorInPredecessorCommitOccured()
-
isCommitContainsSuccess
public boolean isCommitContainsSuccess()
-
isPredecessorContainsSuccess
public boolean isPredecessorContainsSuccess()
-
isCommitContainsParametrizedwhithoutIndex
public boolean isCommitContainsParametrizedwhithoutIndex()
-
isPredecessorContainsParametrizedwhithoutIndex
public boolean isPredecessorContainsParametrizedwhithoutIndex()
-
-