Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for createTests (0.25 sec)

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

    class TestFactoryBase {
     public:
      virtual ~TestFactoryBase() {}
    
      // Creates a test instance to run. The instance is both created and destroyed
      // within TestInfoImpl::Run()
      virtual Test* CreateTest() = 0;
    
     protected:
      TestFactoryBase() {}
    
     private:
      GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase);
    };
    
    // This class provides implementation of TestFactoryBase interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    class TestFactoryBase {
     public:
      virtual ~TestFactoryBase() {}
    
      // Creates a test instance to run. The instance is both created and destroyed
      // within TestInfoImpl::Run()
      virtual Test* CreateTest() = 0;
    
     protected:
      TestFactoryBase() {}
    
     private:
      GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase);
    };
    
    // This class provides implementation of TestFactoryBase interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    class ParameterizedTestFactory : public TestFactoryBase {
     public:
      typedef typename TestClass::ParamType ParamType;
      explicit ParameterizedTestFactory(ParamType parameter) :
          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    class ParameterizedTestFactory : public TestFactoryBase {
     public:
      typedef typename TestClass::ParamType ParamType;
      explicit ParameterizedTestFactory(ParamType parameter) :
          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    hasOneConstructor(); protected void validateInstanceMeth(java.util.List); protected void validateFields(java.util.List); private void validateMethods(java.util.List); protected void validateTestMethods(java.util.List); protected Object createTest() throws Exception; protected Object createTest(model.FrameworkMethod) throws Exception; protected String testName(model.FrameworkMethod); protected model.Statement methodBlock(model.FrameworkMethod); protected model.Statement methodInvoker(model.FrameworkMethod, Object);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top