Class TestTaskConfiguration_1_0

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

@GradleVersion(since="5.0") @PluginVersion(since="3.14") public class TestTaskConfiguration_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
Captures test task configuration.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    The configured maximum number of test classes to execute in a forked test process.
    final int
    The configured maximum number of test processes to start in parallel.
    final long
    The ID of the test task the configuration is captured for.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TestTaskConfiguration_1_0(long task, int maxParallelForks, int forkEvery)
     
  • 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 configuration is captured for.

      Corresponds to TaskStarted_1_0.id.

    • maxParallelForks

      public final int maxParallelForks
      The configured maximum number of test processes to start in parallel.
    • forkEvery

      public final int forkEvery
      The configured maximum number of test classes to execute in a forked test process.
  • Constructor Details

    • TestTaskConfiguration_1_0

      public TestTaskConfiguration_1_0(long task, int maxParallelForks, int forkEvery)
  • Method Details