Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 152 for svctest (0.26 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

                }
            }
    
            named("jsTest") {
                dependencies {
                    implementation(kotlin("test-js"))
                }
            }
    
            named("jvmTest") {
                dependencies {
                    implementation(kotlin("test-junit5"))
                    implementation("org.junit.jupiter:junit-jupiter:5.10.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/testing/match_test.go

    	{"#", "x/#"},
    	{"#", "x/##01"},
    
    	{"t", "x/t"},
    	{"t", "x/t#01"},
    	{"t", "x/t#02"},
    	{"t#00", "x/t#00"}, // Explicit "#00" doesn't conflict with the unsuffixed first subtest.
    
    	{"a#01", "x/a#01"},    // user has subtest with this name.
    	{"a", "x/a"},          // doesn't conflict with this name.
    	{"a", "x/a#02"},       // This string is claimed now, so resume
    	{"a", "x/a#03"},       // with counting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

            addEmptyTestClass("AyTest")
            addEmptyTestClass("AÆTest")
            addEmptyTestClass("ACTest")
            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
            addEmptyTestClass("AbTest")
    
            String expectedTestMessages = """
    executed Test ${maybeParentheses('test')}(AATest)
    executed Test ${maybeParentheses('test')}(ACTest)
    executed Test ${maybeParentheses('test')}(AZTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/build.gradle

    plugins {
        id 'xctest'
    }
    
    // tag::test-filtering[]
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // include all tests from test class
                filter.includeTestsMatching "SomeIntegTest.*" // or `"Testing.SomeIntegTest.*"` on macOS
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 319 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_json_interleaved.txt

    # Regression test for https://golang.org/issue/40657: output from the main test
    # function should be attributed correctly even if interleaved with the PAUSE
    # line for a new parallel subtest.
    
    [short] skip
    
    go test -json
    stdout '"Test":"TestWeirdTiming","Output":"[^"]* logging to outer again\\n"'
    
    -- go.mod --
    module example.com
    go 1.15
    -- main_test.go --
    package main
    
    import (
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 17:44:20 UTC 2020
    - 581 bytes
    - Viewed (0)
  6. hack/testdata/multi-resource-svclist-modify.json

    Janet Kuo <******@****.***> 1444374739 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 12 03:56:15 UTC 2015
    - 837 bytes
    - Viewed (0)
  7. pkg/test/framework/integration/framework_test.go

    	if len(tst.children) == 0 {
    		doWork()
    	} else {
    		for _, child := range tst.children {
    			subTest := t.NewSubTest(child.name)
    			if tst.runChildrenParallel {
    				subTest.RunParallel(child.runInternal)
    			} else {
    				subTest.Run(child.runInternal)
    			}
    		}
    	}
    	tst.runEnd = time.Now()
    }
    
    func (tst *test) timeRange() timeRange {
    	return timeRange{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug_test.go

    		// also, Windows.
    		moreargs = append(moreargs, "-ldflags=-compressdwarf=false")
    	}
    
    	subTest(t, debugger+"-dbg", "hist", dbgFlags, moreargs...)
    	subTest(t, debugger+"-dbg", "scopes", dbgFlags, moreargs...)
    	subTest(t, debugger+"-dbg", "i22558", dbgFlags, moreargs...)
    
    	subTest(t, debugger+"-dbg-race", "i22600", dbgFlags, append(moreargs, "-race")...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. pkg/test/util_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package test
    
    import (
    	"testing"
    )
    
    func TestSetForTest(t *testing.T) {
    	v := 1
    	t.Run("subtest", func(t *testing.T) {
    		SetForTest(t, &v, 2)
    		if v != 2 {
    			t.Fatalf("unexpected v: %v", v)
    		}
    	})
    	if v != 1 {
    		t.Fatalf("unexpected v: %v", v)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 19 12:03:45 UTC 2022
    - 838 bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

                project(':sub') {
                    def subTest = tasks.register('test') {
                        doLast {
                             println 'sub test executed'
                        }
                    }
    
                    tasks.register('build') {
                        doLast {
                            println 'sub build executed'
                        }
                        dependsOn subTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top