Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for unitText (0.23 sec)

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

    class GTEST_API_ UnitTest {
     public:
      // Gets the singleton UnitTest object.  The first time this method
      // is called, a UnitTest object is constructed and returned.
      // Consecutive calls will return the same object.
      static UnitTest* GetInstance();
    
      // Runs all tests in this UnitTest object and prints the result.
      // Returns 0 if successful, or 1 otherwise.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    class GTEST_API_ UnitTest {
     public:
      // Gets the singleton UnitTest object.  The first time this method
      // is called, a UnitTest object is constructed and returned.
      // Consecutive calls will return the same object.
      static UnitTest* GetInstance();
    
      // Runs all tests in this UnitTest object and prints the result.
      // Returns 0 if successful, or 1 otherwise.
      //
    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-param-test.h

          : 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>(\
                  #test_case_name, __FILE__, __LINE__)->AddTestPattern(\
                      #test_case_name, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

          : 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>(\
                  #test_case_name, __FILE__, __LINE__)->AddTestPattern(\
                      #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)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      // replaces `/` with `_`.
      //
      // We trade in one extra initialization for readability.
      ModularFileSystemTest() {
        const std::string test_name = tensorflow::str_util::StringReplace(
            ::testing::UnitTest::GetInstance()->current_test_info()->name(), "/",
            "_", /*replace_all=*/true);
        if (!cloud_path_.empty()) {
          // We have to join path for non-local filesystem manually to make sure
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    			break
    		}
    	}
    	if gets != 1 || updates != 2 {
    		t.Errorf("Expected 1 get and 2 updates, got %d gets %d updates", gets, updates)
    	}
    }
    
    // TODO: This test is too hairy for a unittest. It should be moved to an E2E suite.
    func doTestControllerBurstReplicas(t *testing.T, burstReplicas, numReplicas int) {
    	logger, ctx := ktesting.NewTestContext(t)
    	labelMap := map[string]string{"foo": "bar"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top