Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for for_tests (0.14 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/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)
  6. 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)
  7. 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)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/root.iml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output />
        <content url="file://$MODULE_DIR$" />
        <orderEntry type="inheritedJdk" />
        <orderEntry type="sourceFolder" forTests="false" />
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://$CUSTOM_DIR$/../cache/junit/junit/jars/junit-4.7.jar!/"/>
            </CLASSES>
            <JAVADOC/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 738 bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/moduleWithoutContent.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <module version="4">
        <component name="NewModuleRootManager" inherit-compiler-output="false">
            <orderEntry type="sourceFolder" forTests="false" />
        </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 223 bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iml.xml

        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
Back to top