Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for TestBody (0.12 sec)

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

      class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
          : public test_case_name { \
       public: \
        GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \
        virtual void TestBody(); \
       private: \
        static int AddToRegistry() { \
          ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \
              GetTestCasePatternHolder<test_case_name>(\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      //
      // A sub-class must implement this to define the test logic.
      //
      // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      //
      // A sub-class must implement this to define the test logic.
      //
      // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top