Class TestExecutorAssigned_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.test.TestExecutorAssigned_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
@GradleVersion(since="5.4")
@PluginVersion(since="3.14")
public class TestExecutorAssigned_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
Captures the data about the test executor assigned to execute test classes of a test task.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal @Nullable("if local executor is assigned or if is equal to name") StringThe hostname of the test executor assigned to the test task.final longThe ID of the test executor assigned to the test task.final booleanIndicates whether assigned executor is local or remote.final StringThe name of the test executor assigned to the test task.final @Nullable("if a local test executor was assigned") StringThe ID of the Test Distribution executor pool the executor belongs to.final longThe ID of the test task the agent was assigned to. -
Constructor Summary
ConstructorsConstructorDescriptionTestExecutorAssigned_1_0(long task, long id, boolean isRemote, String name, @Nullable String hostname, @Nullable String poolId) -
Method Summary
-
Field Details
-
task
public final long taskThe ID of the test task the agent was assigned to.Corresponds to
TaskStarted_1_0.id. -
id
public final long idThe ID of the test executor assigned to the test task. -
isRemote
public final boolean isRemoteIndicates whether assigned executor is local or remote. -
name
The name of the test executor assigned to the test task. -
hostname
@Nullable("if local executor is assigned or if is equal to name") public final @Nullable("if local executor is assigned or if is equal to name") String hostnameThe hostname of the test executor assigned to the test task. -
poolId
@Nullable("if a local test executor was assigned") public final @Nullable("if a local test executor was assigned") String poolIdThe ID of the Test Distribution executor pool the executor belongs to.
-
-
Constructor Details
-
TestExecutorAssigned_1_0
-
-
Method Details