Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateTestFactory (0.2 sec)

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

    // test factories for passing into MakeAndRegisterTestInfo function.
    template <class ParamType>
    class TestMetaFactoryBase {
     public:
      virtual ~TestMetaFactoryBase() {}
    
      virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
    };
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // TestMetaFactory creates test factories for passing into
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // test factories for passing into MakeAndRegisterTestInfo function.
    template <class ParamType>
    class TestMetaFactoryBase {
     public:
      virtual ~TestMetaFactoryBase() {}
    
      virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
    };
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    // TestMetaFactory creates test factories for passing into
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            }
    
            @Provides
            protected Integer createInt() {
                return 12
            }
    
            @Provides
            protected Factory<BigDecimal> createTestFactory() {
                return new TestFactory()
            }
        }
    
        private static class TestProvider implements ServiceRegistrationProvider {
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top