Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for executeTest (0.35 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      // be executed immediately.  OVERSEE means that the program should prepare
      // the appropriate environment for a child process to execute the death
      // test, then wait for it to complete.
      enum TestRole { OVERSEE_TEST, EXECUTE_TEST };
    
      // An enumeration of the three reasons that a test might be aborted.
      enum AbortReason {
        TEST_ENCOUNTERED_RETURN_STATEMENT,
        TEST_THREW_EXCEPTION,
        TEST_DID_NOT_DIE
      };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

        }
    
        def descriptorForParentOfRootTestSuite(ProgressEvents events) {
            if (GradleVersion.version(targetDist.version.baseVersion.version) >= GradleVersion.version("7.3")) {
                events.operation("Execute executeTests for :test").descriptor
            } else {
                null
            }
        }
    
        def goodCode() {
            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         * @since 3.5
         */
        public void testLogging(Action<? super TestLoggingContainer> action) {
            action.execute(testLogging);
        }
    
        @TaskAction
        public void executeTests() {
            LogLevel currentLevel = determineCurrentLogLevel();
            TestLogging levelLogging = getTestLogging().get(currentLevel);
            TestExceptionFormatter exceptionFormatter = getExceptionFormatter(levelLogging);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    ### Autres fonctions utilitaires
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top