Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for failed_test_count (0.4 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      bool should_run() const { return should_run_; }
    
      // Gets the number of successful tests in this test case.
      int successful_test_count() const;
    
      // Gets the number of failed tests in this test case.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests in this test case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      bool should_run() const { return should_run_; }
    
      // Gets the number of successful tests in this test case.
      int successful_test_count() const;
    
      // Gets the number of failed tests in this test case.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests in this test case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            1 * listener.started(_, _)
            1 * listener.completed(
                    { it instanceof DecoratingTestDescriptor && it.descriptor == test },
                    { it.successfulTestCount == 1 && it.testCount == 1 && it.failedTestCount == 0 },
                    completeEvent
            )
            0 * _
        }
    
        void createsAResultForATestWithFailure() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/SimpleTestResult.groovy

        Throwable exception = exceptions[0]
        List<TestFailure> failures
        long startTime = 0
        long endTime = startTime + 100
        long testCount = 1
        long successfulTestCount = 1
        long failedTestCount = 0
        long skippedTestCount = 0
    
        SimpleTestResult(long endTime = 100) {
            this.endTime = endTime
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/DefaultTestResultTest.groovy

            result.exceptions == state.failures.collect { it.rawFailure }
            result.testCount == state.testCount
            result.successfulTestCount == state.successfulCount
            result.failedTestCount == state.failedCount
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top