Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for GTEST_DISALLOW_COPY_AND_ASSIGN_ (0.28 sec)

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

          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // TestMetaFactoryBase is a base class for meta-factories that create
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
        ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); }
       private:
        DeathTest* const test_;
        GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);
      } GTEST_ATTRIBUTE_UNUSED_;
    
      // An enumeration of possible roles that may be taken when a death
      // test is encountered.  EXECUTE means that the death test logic should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
        ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); }
       private:
        DeathTest* const test_;
        GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel);
      } GTEST_ATTRIBUTE_UNUSED_;
    
      // An enumeration of possible roles that may be taken when a death
      // test is encountered.  EXECUTE means that the death test logic should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // TestMetaFactoryBase is a base class for meta-factories that create
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // Returns the number of TestPartResult objects in the array.
      int size() const;
    
     private:
      std::vector<TestPartResult> array_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray);
    };
    
    // This interface knows how to report a test part result.
    class TestPartResultReporterInterface {
     public:
      virtual ~TestPartResultReporterInterface() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // Returns the number of TestPartResult objects in the array.
      int size() const;
    
     private:
      std::vector<TestPartResult> array_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray);
    };
    
    // This interface knows how to report a test part result.
    class TestPartResultReporterInterface {
     public:
      virtual ~TestPartResultReporterInterface() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

     private:
      void Init();
    
      const InterceptMode intercept_mode_;
      TestPartResultReporterInterface* old_reporter_;
      TestPartResultArray* const result_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter);
    };
    
    namespace internal {
    
    // A helper class for implementing EXPECT_FATAL_FAILURE() and
    // EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

     private:
      void Init();
    
      const InterceptMode intercept_mode_;
      TestPartResultReporterInterface* old_reporter_;
      TestPartResultArray* const result_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter);
    };
    
    namespace internal {
    
    // A helper class for implementing EXPECT_FATAL_FAILURE() and
    // EXPECT_NONFATAL_FAILURE().  Its destructor verifies that the given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_ATTRIBUTE_UNUSED_  - declares that a class' instances or a
    //                              variable don't have to be used.
    //   GTEST_DISALLOW_ASSIGN_   - disables operator=.
    //   GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
    //   GTEST_MUST_USE_RESULT_   - declares that a function's result must be used.
    //
    // Synchronization:
    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_ATTRIBUTE_UNUSED_  - declares that a class' instances or a
    //                              variable don't have to be used.
    //   GTEST_DISALLOW_ASSIGN_   - disables operator=.
    //   GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
    //   GTEST_MUST_USE_RESULT_   - declares that a function's result must be used.
    //
    // Synchronization:
    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top