Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for for_tests (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                        suite("Gradle Test Executor") {
                            testClass("org.example.ComplexTests") {
                                operationDisplayName "some_name for_tests"
                                testDisplayName "some_name for_tests"
    
                                test("test()") {
                                    operationDisplayName "test"
                                    testDisplayName "test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. src/crypto/subtle/xor_test.go

    qiulaidongfeng <******@****.***> 1708077160 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:51:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/kubelet/util/sliceutils/sliceutils_test.go

    				},
    			},
    		},
    	}
    }
    
    func TestPodsByCreationTimeLen(t *testing.T) {
    	fooTests := []struct {
    		pods PodsByCreationTime
    		el   int
    	}{
    		{[]*v1.Pod{}, 0},
    		{buildPodsByCreationTime(), 3},
    		{[]*v1.Pod{nil, {}}, 2},
    		{nil, 0},
    	}
    
    	for _, fooTest := range fooTests {
    		r := fooTest.pods.Len()
    		if r != fooTest.el {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

                    it.type == 'inheritedJdk'
                }
            }
    
            void assertHasSource(String forTests) {
                assert dependencies.findAll { it.type == 'sourceFolder' }.any { ImlSource it -> it.forTests == forTests }
            }
    
            void assertHasModule(List<String> scopes, String name) {
                scopes.each {assertHasModule(it, name)}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/issue29755.test

                foo_test.go:14: output from sub2 test
        foo_test.go:22: output from root test
        foo_test.go:27: output from root test
        --- PASS: TestOutputWithSubtest/sub_test2 (0.00s)
            foo_test.go:21: output from sub test2
            foo_test.go:23: more output from sub test2
            foo_test.go:28: more output from sub test2
            --- PASS: TestOutputWithSubtest/sub_test2/sub2 (0.00s)
                foo_test.go:26: output from sub2 test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_shuffle.txt

    # Run tests
    go test -v foo_test.go
    ! stdout '-test.shuffle '
    stdout '(?s)TestOne(.*)TestTwo(.*)TestThree'
    
    go test -v -shuffle=off foo_test.go
    ! stdout '-test.shuffle '
    stdout '(?s)TestOne(.*)TestTwo(.*)TestThree'
    
    go test -v -shuffle=42 foo_test.go
    stdout '^-test.shuffle 42'
    stdout '(?s)TestThree(.*)TestOne(.*)TestTwo'
    
    go test -v -shuffle=0 foo_test.go
    stdout '^-test.shuffle 0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:46:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_test_files.txt

    go list -test -deps
    go list -test -deps foo_test.go
    
    # If the file is inside the main module's vendor directory, it should have
    # visibility based on the vendor-relative import path.
    mkdir vendor/example.com/foo
    cp foo_test.go vendor/example.com/foo
    go list -test -deps vendor/example.com/foo/foo_test.go
    
    # If the file is outside the main module entirely, it should be treated as outside.
    cp foo_test.go ../foo_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_test_cached.txt

    go test -run=WriteTmp
    ! stdout '(cached)'
    go test -run=WriteTmp
    ! stdout '(cached)'
    
    # We should never cache a test run from command-line files.
    go test -run=WriteTmp ./foo_test.go
    ! stdout '(cached)'
    go test -run=WriteTmp ./foo_test.go
    ! stdout '(cached)'
    
    [!exec:sleep] stop
    # The go command refuses to cache access to files younger than 2s, so sleep that long.
    exec sleep 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:6: output before sub tests\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:10: output from root test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:15: output from root test\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultModule.xml

            <exclude-output/>
            <orderEntry type="inheritedJdk"/>
            <content url="file://$MODULE_DIR$">
            </content>
            <orderEntry type="sourceFolder" forTests="false"/>
        </component>
        <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 435 bytes
    - Viewed (0)
Back to top