Class MvnTestGoalConfiguration_1_0

java.lang.Object
com.gradle.scan.eventmodel.maven.test.MvnTestGoalConfiguration_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData

@MavenVersion(since="3.3.1") @MavenExtensionVersion(since="1.18") public class MvnTestGoalConfiguration_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
Captures test goal execution configuration.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    The configured maximum number of JVM processes that will be spawned concurrently to execute the tests.
    final long
    The ID of the test goal execution the request is being made as part of.
    final boolean
    Indicates whether the spawned test process is terminated after one test class.
  • Constructor Summary

    Constructors
    Constructor
    Description
    MvnTestGoalConfiguration_1_0(long goalExecutionId, int forkCount, boolean reuseForks)
     
  • 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

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

    • forkCount

      public final int forkCount
      The configured maximum number of JVM processes that will be spawned concurrently to execute the tests.
    • reuseForks

      public final boolean reuseForks
      Indicates whether the spawned test process is terminated after one test class.
  • Constructor Details

    • MvnTestGoalConfiguration_1_0

      public MvnTestGoalConfiguration_1_0(long goalExecutionId, int forkCount, boolean reuseForks)
  • Method Details