Class TestStarted_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.TestStarted_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
- Direct Known Subclasses:
TestStarted_1_1
@GradleVersion(since="2.5")
@PluginVersion(since="1.0",
until="3.9")
public class TestStarted_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
An
EventData that is published when a test has started executing.
Zero or more TestStarted_1_0 events may be published.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal @Nullable("for some test descriptors, such as test workers") StringThe fully qualified test class name for the test, if any.final longThe id of the test.final StringThe name of the test.final @Nullable("for top-level test container") LongThe test id of the parent of the test, if any.final booleanWhether the test is a composite test, i.e.final longThe id of the task that executed the test. -
Constructor Summary
ConstructorsConstructorDescriptionTestStarted_1_0(long task, long id, @Nullable Long parent, String name, @Nullable String className, boolean suite) -
Method Summary
-
Field Details
-
task
public final long taskThe id of the task that executed the test. -
id
public final long idThe id of the test. -
parent
@Nullable("for top-level test container") public final @Nullable("for top-level test container") Long parentThe test id of the parent of the test, if any. -
name
The name of the test. -
className
@Nullable("for some test descriptors, such as test workers") public final @Nullable("for some test descriptors, such as test workers") String classNameThe fully qualified test class name for the test, if any. -
suite
public final boolean suiteWhether the test is a composite test, i.e. made up of zero or more tests.
-
-
Constructor Details
-
TestStarted_1_0
-
-
Method Details