Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 345 for NewTest (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestFrameworkIntegrationTest.groovy

                public class NotATest {}
            """
        }
    
        @Override
        void renameTests() {
            def newTest = file("src/test/java/NewTest.java")
            file('src/test/java/SomeOtherTest.java').renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "test"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

        }
    
        @Override
        void renameTests() {
            def newTest = file("src/test/swift/NewTest.swift")
            file("src/test/swift/SomeOtherTest.swift").renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
            def linuxMain = file("src/test/swift/LinuxMain.swift")
            linuxMain.text = linuxMain.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestFrameworkIntegrationTest.groovy

                public class NotATest {}
            """
        }
    
        @Override
        void renameTests() {
            def newTest = file("src/test/java/NewTest.java")
            file('src/test/java/SomeOtherTest.java').renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "test"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tests/integration/helm/upgrade/helm_upgrade_test.go

    func TestDefaultInPlaceUpgradeFromPreviousMinorRelease(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(performInPlaceUpgradeFunc(previousSupportedVersion, false))
    }
    
    // TestCanaryUpgradeFromPreviousMinorRelease tests Istio upgrade using Helm with default options for Istio 1.(n-1)
    func TestCanaryUpgradeFromPreviousMinorRelease(t *testing.T) {
    	framework.
    		NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 20:31:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGTestFrameworkIntegrationTest.groovy

                public class NotATest {}
            """
        }
    
        @Override
        void renameTests() {
            def newTest = file("src/test/java/NewTest.java")
            file('src/test/java/SomeOtherTest.java').renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "test"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. tests/integration/pilot/analyze_test.go

    	jsonOutput           = "-ojson"
    )
    
    var analyzerFoundIssuesError = analyze.AnalyzerFoundIssuesError{}
    
    func TestEmptyCluster(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			g := NewWithT(t)
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "istioctl-analyze",
    				Inject: true,
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. tests/integration/helm/install_test.go

    	overrideValuesStr := `
    global:
      hub: %s
      tag: %s
      variant: %q
    `
    	framework.
    		NewTest(t).
    		Run(setupInstallation(overrideValuesStr, false, DefaultNamespaceConfig, ""))
    }
    
    // TestAmbientInstall tests Istio ambient profile installation using Helm
    func TestAmbientInstall(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(setupInstallation(ambientProfileOverride, true, DefaultNamespaceConfig, ""))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. test/fixedbugs/bug455.go

    // Used to happen with 6g.
    
    package main
    
    type test_i interface {
    	Test() test_i
    	Result() bool
    }
    
    type test_t struct {
    }
    
    func newTest() *test_t {
    	return &test_t{}
    }
    
    type testFn func(string) testFn
    
    func main() {
    	test := newTest()
    
    	switch {
    	case test.
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    		Test().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 777 bytes
    - Viewed (0)
  9. tests/integration/pilot/revisions/uninstall_test.go

    	revisionNotFound = "could not find target revision"
    )
    
    var allGVKs = append(helmreconciler.NamespacedResources(), helmreconciler.ClusterCPResources...)
    
    func TestUninstallByRevision(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.NewSubTest("uninstall_revision").Run(func(t framework.TestContext) {
    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    				uninstallCmd := []string{
    					"uninstall",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. tests/integration/security/jwt_test.go

    	payload3 := strings.Split(jwt.TokenIssuer1WithNestedClaims2, ".")[1]
    	framework.NewTest(t).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/35835
    		Run(func(t framework.TestContext) {
    			type testCase struct {
    				name          string
    				customizeCall func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions)
    			}
    
    			newTest := func(policy string, cases []testCase) func(framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
Back to top