Class BzlTestFinished_1_0
java.lang.Object
com.gradle.scan.eventmodel.bazel.test.BzlTestFinished_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
@BazelVersion(since="1.0")
@BazelAgentVersion(since="1.0")
public class BzlTestFinished_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
Sent when Bazel finishes a test.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionfinal @Nullable Long
The ID of aBzlTestFailure_1_0
event, if the outcome isBzlTestOutcome_1.FAILED
and failure information is available.final long
The ID of this test, as inBzlTestStarted_1_0
final BzlTestOutcome_1
The outcome of the test.final long
The ID of theBzlTestTargetAttemptStarted_1_0
event that this test belongs to. -
Constructor Summary
ConstructorDescriptionBzlTestFinished_1_0
(long id, long testTargetAttemptId, BzlTestOutcome_1 outcome, @Nullable Long failureId) -
Method Summary
-
Field Details
-
id
public final long idThe ID of this test, as inBzlTestStarted_1_0
-
testTargetAttemptId
public final long testTargetAttemptIdThe ID of theBzlTestTargetAttemptStarted_1_0
event that this test belongs to. -
outcome
The outcome of the test. -
failureId
The ID of aBzlTestFailure_1_0
event, if the outcome isBzlTestOutcome_1.FAILED
and failure information is available.
-
-
Constructor Details
-
BzlTestFinished_1_0
public BzlTestFinished_1_0(long id, long testTargetAttemptId, BzlTestOutcome_1 outcome, @Nullable @Nullable Long failureId)
-
-
Method Details