Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for processTestClass (0.24 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

     * methods willed be called sequentially in the following order:
     *
     * - {@link RemoteTestClassProcessor#startProcessing()}
     * - 0 or more calls to {@link RemoteTestClassProcessor#processTestClass(TestClassRunInfo)}
     * - {@link RemoteTestClassProcessor#stop()}
     *
     * Commands are received on communication threads and then processed sequentially on the main thread.  Although concurrent calls to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            process(clazz*.name)
        }
    
        void process(Iterable<String> classNames) {
            classProcessor.startProcessing(processor)
            for (String c : classNames) {
                classProcessor.processTestClass(new DefaultTestClassRunInfo(c))
            }
            classProcessor.stop()
        }
    
        void "executes the test class"() {
            when: process(ATestNGClass)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            if (spec.isDryRun()) {
                System.setProperty("testng.mode.dryrun", "true");
            }
        }
    
        @Override
        public void processTestClass(TestClassRunInfo testClass) {
            // TODO - do this inside some 'testng' suite, so that failures and logging are attached to 'testng' rather than some 'test worker'
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            process(clazz*.name)
        }
    
        void process(Iterable<String> classNames) {
            classProcessor.startProcessing(processor)
            for (String c : classNames) {
                classProcessor.processTestClass(new DefaultTestClassRunInfo(c))
            }
            classProcessor.stop()
        }
    
        def "executes a JUnit 4 test class"() {
            when:
            process(ATestClass)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top