Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setTestExecuter (0.18 sec)

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

                    throw new IllegalArgumentException()
                }
            })
        }
    
        private void configureTask() {
            test.useTestFramework(testFrameworkMock)
            test.setTestExecuter(testExecuterMock)
    
            test.setTestClassesDirs(TestFiles.fixed(classesDir))
            test.getReports().getJunitXml().outputLocation.set(resultsDir)
            test.binaryResultsDirectory.set(binResultsDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            action.execute(getFilter());
        }
    
        /**
         * Sets the testExecuter property.
         *
         * @since 4.2
         */
        @UsedByScanPlugin("test-distribution, test-retry")
        void setTestExecuter(TestExecuter<JvmTestExecutionSpec> testExecuter) {
            this.testExecuter = testExecuter;
        }
    
        /**
         * Configures the java executable to be used to run the tests.
         *
         * @since 6.7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top