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

    Fields
    Modifier and Type
    Field
    Description
    final @Nullable("if local executor is assigned or if is equal to name") String
    The hostname of the test executor assigned to the test task.
    final long
    The ID of the test executor assigned to the test task.
    final boolean
    Indicates whether assigned executor is local or remote.
    final String
    The name of the test executor assigned to the test task.
    final @Nullable("if a local test executor was assigned") String
    The ID of the Test Distribution executor pool the executor belongs to.
    final long
    The ID of the test task the agent was assigned to.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TestExecutorAssigned_1_0(long task, long id, boolean isRemote, String name, @Nullable String hostname, @Nullable String poolId)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • task

      public final long task
      The ID of the test task the agent was assigned to.

      Corresponds to TaskStarted_1_0.id.

    • id

      public final long id
      The ID of the test executor assigned to the test task.
    • isRemote

      public final boolean isRemote
      Indicates whether assigned executor is local or remote.
    • name

      public final String 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 hostname
      The 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 poolId
      The ID of the Test Distribution executor pool the executor belongs to.
  • Constructor Details

    • TestExecutorAssigned_1_0

      public TestExecutorAssigned_1_0(long task, long id, boolean isRemote, String name, @Nullable @Nullable String hostname, @Nullable @Nullable String poolId)
  • Method Details