Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for suiteThreadPoolSize (0.31 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        private void setSuiteThreadPoolSize(TestNG testNg, int suiteThreadPoolSize) {
            if (suiteThreadPoolSize < 1) {
                throw new InvalidUserDataException("suiteThreadPoolSize must be greater than or equal to 1.");
            }
    
            try {
                JavaMethod.of(TestNG.class, Object.class, "setSuiteThreadPoolSize", int.class).invoke(testNg, suiteThreadPoolSize);
            } catch (NoSuchMethodException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top