Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for createTests (0.28 sec)

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

                }
                test {
                  useTestNG {
                    suites "suite.xml"
                  }
                }
            """
        }
    
        def createTests(int testCount, int threadCount) {
            String suiteXml = ""
            testCount.times { x ->
                file("src/test/java/Foo${x}Test.java") << """
                    public class Foo${x}Test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/kubernetesservice/controller_test.go

    	singleStack := corev1.IPFamilyPolicySingleStack
    	ns := metav1.NamespaceDefault
    	om := func(name string) metav1.ObjectMeta {
    		return metav1.ObjectMeta{Namespace: ns, Name: name}
    	}
    
    	createTests := []struct {
    		testName     string
    		serviceName  string
    		servicePorts []corev1.ServicePort
    		serviceType  corev1.ServiceType
    		expectCreate *corev1.Service // nil means none expected
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

                            super(testClass);
                        }
    
                        @Override
                        protected Object createTest() throws Exception {
                            return super.createTest();
                        }
    
                        @Override
                        public Statement classBlock(RunNotifier notifier) {
                            return super.classBlock(notifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top