Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for createTests (1.18 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

                import org.testng.annotations.Test;
                import org.testng.Assert;
    
                public class TestNG7878 {
                    @Factory
                    public static Object[] createTests() {
                        return new Object[]{
                                new TestNG7878(),
                                new TestNG7878()
                        };
                    }
    
                    @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            """
    
    
            then:
            scanRunner("-Dorg.gradle.unsafe.isolated-projects=true")
                .build().output.contains("Build scan written to")
    
            when:
            createTest(file("project1"), "MyTest1")
            createTest(file("project2"), "MyTest1")
    
            then:
            with(scanRunner("-Dorg.gradle.unsafe.isolated-projects=true")
                .build()) {
                output.contains("Build scan written to")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
          if (Modifier.isPublic(method.getModifiers()) && method.getName().startsWith("test")) {
            suite.addTest(
                TestSuite.createTest(AbstractFutureFallbackAtomicHelperTest.class, method.getName()));
          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
          if (Modifier.isPublic(method.getModifiers()) && method.getName().startsWith("test")) {
            suite.addTest(
                TestSuite.createTest(AbstractFutureFallbackAtomicHelperTest.class, method.getName()));
          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. istioctl/pkg/workload/workload.go

    		return err
    	}
    	if err := createCertsTokens(kubeClient, wg, outputDir, out); err != nil {
    		return err
    	}
    	if err := createHosts(kubeClient, istioNamespace, ingressIP, outputDir, revision); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Write cluster.env into the given directory
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
Back to top