Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,638 for Dests (0.04 sec)

  1. .idea/kotlinTestDataPluginTestDataPaths.xml

                  <option value="$PROJECT_DIR$/js/js.tests/build/node/{out,out-min,out-per-module,out-per-module-min}/codegen/{boxInline,irBoxInline,firBoxInline,firEs6BoxInline}/$TEST_DATA_FILE$_v5.js" />
                </array>
              </value>
            </entry>
            <entry key="$PROJECT_DIR$/compiler/testData/debug">
              <value>
                <array>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    				}
    			}
    		})
    	}
    
    	if needUpdate {
    		// Remove tests marked for deletion
    		r, w := 0, 0
    		for r < len(tests) {
    			if tests[r].m.Path != "" {
    				tests[w] = tests[r]
    				w++
    			}
    			r++
    		}
    		tests = tests[:w]
    
    		if err := writeZipSumTests(tests); err != nil {
    			t.Error(err)
    		}
    	}
    }
    
    func readZipSumTests() ([]zipSumTest, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. util/gradle_integration_tests.sh

    # error: Your local changes to the following files would be overwritten by checkout:
    #         integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar
    #         integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties
    #         integration-tests/gradle/gradlew
    #         integration-tests/gradle/gradlew.bat
    # Please commit your changes or stash them before you switch branches.
    
    GRADLE_TEMP="$(mktemp -d)"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. operator/pkg/name/name_test.go

    				"key2": "",
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := tt.mm.Consolidated(); !reflect.DeepEqual(got, tt.want) {
    				t.Errorf("ManifestMap.Consolidated() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestMergeManifestSlices(t *testing.T) {
    	tests := []struct {
    		name      string
    		manifests []string
    		want      string
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    gradle test --tests 'all.in.specific.package*'
    
    # specific method at specific package (recursively)
    gradle test --tests 'all.in.specific.package*.someSpecificMethod'
    
    gradle test --tests '*IntegTest'
    
    gradle test --tests '*IntegTest*ui*'
    
    gradle test --tests '*ParameterizedTest.foo*'
    
    # the second iteration of a parameterized test
    gradle test --tests '*ParameterizedTest.*[2]'
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            failsWithTestTaskArguments("test", "--tests=DoesNotMatchAClass*")
    
            then:
            result.assertHasCause('No tests found for given includes: [DoesNotMatchAClass*](--tests filter)')
    
            when:
            failsWithTestTaskArguments("test", "--tests=NotATest*")
            then:
            result.assertHasCause('No tests found for given includes: [NotATest*](--tests filter)')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_match.txt

    go test standalone_fuzz_test.go
    ! stdout '^ok.*\[no tests to run\]'
    stdout '^ok'
    
    # Matches only for fuzzing.
    go test -fuzz Fuzz -fuzztime 1x standalone_fuzz_test.go
    ! stdout '^ok.*\[no tests to run\]'
    stdout '^ok'
    
    # Matches none for fuzzing but will run the fuzz target as a test.
    go test -fuzz ThisWillNotMatch -fuzztime 1x standalone_fuzz_test.go
    ! stdout '^ok.*no tests to run'
    stdout '^ok'
    stdout 'no fuzz tests to fuzz'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 953 bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

    /**
     * Marks a test as flaky. The flaky tests are quarantined to run
     * at a special stage so it won't interrupt normal build pipeline.
     *
     * For Spock tests, including/excluding tests annotated by this annotation is handled by `SpockConfig.groovy` in classpath.
     * For JUnit Jupiter tests, because it's a <a href="https://junit.org/junit5/docs/current/user-guide/#writing-tests-meta-annotations">Meta-Annotation</a>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/PerformanceTestPluginTest.kt

        fun `given a JUnit xml report, #allTestsWereSkipped returns true if @tests == @skipped and false otherwise`() {
    
            assert(
                allTestsWereSkipped(junitXmlWith(tests = "2", skipped = "2"))
            )
    
            assert(
                !allTestsWereSkipped(junitXmlWith(tests = "2", skipped = "1"))
            )
        }
    
        private
        fun junitXmlWith(tests: String, skipped: String): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1002 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    |======================
    |Test type                               |Tooling support
    |<<manual-tests,Manual tests>>           |<<composite_builds.adoc#composite_builds,Gradle composite builds>>
    |<<unit-tests,Unit tests>>               |Any JVM-based test framework
    |<<integration-tests,Integration tests>> |Any JVM-based test framework
    |<<functional-tests,Functional tests>>   |Any JVM-based test framework and <<test_kit.adoc#test_kit,Gradle TestKit>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top