Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for useTestFramework (0.14 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         * <p>
         *
         * @see #useJUnit(org.gradle.api.Action) Configure JUnit4 specific options.
         */
        public void useJUnit() {
            useTestFramework(new JUnitTestFramework(this, (DefaultTestFilter) getFilter(), true));
        }
    
        /**
         * Specifies that JUnit4 should be used to discover and execute the tests with additional configuration.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  2. 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)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top