Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RunTests (0.18 sec)

  1. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            return new ProviderBuildResult<>(results);
        }
    
        /**
         * This is used by consumers 2.6-rc-1 and later
         */
        @Override
        public BuildResult<?> runTests(InternalTestExecutionRequest testExecutionRequest, InternalCancellationToken cancellationToken, BuildParameters operationParameters)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        @Override
        public void stop() {
            try {
                runTests();
            } finally {
                resultProcessorActor.stop();
            }
        }
    
        @Override
        public void stopNow() {
            throw new UnsupportedOperationException("stopNow() should not be invoked on remote worker TestClassProcessor");
        }
    
        private void runTests() {
            TestNG testNg = new TestNG();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. hack/make-rules/test.sh

        go -C "${KUBE_ROOT}/cmd/prune-junit-xml" install .
      fi
      prune-junit-xml "${junit_xml_filename}"
    
      kube::log::status "Saved JUnit XML test report to ${junit_xml_filename}"
    }
    
    runTests() {
      local junit_filename_prefix
      junit_filename_prefix=$(junitFilenamePrefix)
    
      # Try to normalize input names.
      local -a targets
      kube::util::read-array targets < <(kube::golang::normalize_go_targets "$@")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

            return new TestMetaData('4.4')
        }
    }
    
    class TestR26Connection extends TestR22Connection implements InternalTestExecutionConnection {
        @Override
        BuildResult<?> runTests(InternalTestExecutionRequest testExecutionRequest, InternalCancellationToken cancellationToken, BuildParameters operationParameters) {
            throw new UnsupportedOperationException()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                    providerParameters, params);
            } finally {
                failsafePhasedActionResultListener.rethrowErrors();
            }
        }
    
        public Object runTests(ProviderInternalTestExecutionRequest testExecutionRequest, BuildCancellationToken cancellationToken, ProviderOperationParameters providerParameters) {
            Parameters params = initParams(providerParameters);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top