Class MvnTestExecutorAssigned_1_0

  • All Implemented Interfaces:
    com.gradle.scan.eventmodel.EventData

    @MavenVersion(since="3.3.1")
    @MavenExtensionVersion(since="1.18")
    public class MvnTestExecutorAssigned_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 goal.
    • Field Detail

      • goalExecutionId

        public final long goalExecutionId
        The ID of the test goal execution the request is being made as part of.

        Corresponds to MvnGoalExecutionStarted_1_0.id.

      • 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 goal.
      • 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 goal.
      • 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 Detail

      • MvnTestExecutorAssigned_1_0

        public MvnTestExecutorAssigned_1_0​(long goalExecutionId,
                                           long id,
                                           boolean isRemote,
                                           String name,
                                           @Nullable
                                           @Nullable String hostname,
                                           @Nullable
                                           @Nullable String poolId)