Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _setListeners (2.27 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                setIncludeGroups([prefix + "IncludedGroup"] as Set)
                setExcludeGroups([prefix + "ExcludedGroup"] as Set)
                setConfigFailurePolicy(prefix + "ConfigFailurePolicy")
                setListeners([prefix + "Listener"] as Set)
                setParallel(prefix + "Parallel")
                setThreadCount(intValue)
                getSuiteThreadPoolSize().set(intValue)
                setUseDefaultListeners(booleanValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         *     }
         * }
         * </pre>
         */
        @Internal
        public Set<String> getListeners() {
            return listeners;
        }
    
        public void setListeners(Set<String> listeners) {
            this.listeners = listeners;
        }
    
        /**
         * The parallel mode to use for running the tests - one of the following modes: methods, tests, classes or instances.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top