Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for testOk (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

        }
    }
    """
            succeeds('test')
        }
    
        void nonTransitiveDependenciesAreNotRetrieved() {
            expect:
            repo.module('org.gradle.test', 'one', '1.0').publish()
            repo.module('org.gradle.test', 'two', '1.0').publish()
            def lib = repo.module('org.gradle.test', 'external1', '1.0')
            lib.dependsOn('org.gradle.test', 'one', '1.0')
            lib.artifact(classifier: 'classifier')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. hack/make-rules/test.sh

      # Run all specified tests, collecting coverage results. Go currently doesn't
      # support collecting coverage across multiple packages at once, so we must issue
      # separate 'go test' commands for each package and then combine at the end.
      # To speed things up considerably, we can at least use xargs -P to run multiple
      # 'go test' commands at once.
      # To properly parse the test results if generating a JUnit test report, we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         * <li>A value of <code>N</code> means that up to <code>N</code> test processes will be started to execute test classes. <b>This can improve test execution time by running multiple test classes in parallel.</b></li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  4. pkg/test/framework/test.go

    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-tests.png

    teamcity-tests.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    // issue 8092
    
    func test8092(t *testing.T) {
    	tests := []struct {
    		s    string
    		a, b *C.char
    	}{
    		{"text", &C.text[0], C.ctext()},
    		{"data", &C.data[0], C.cdata()},
    	}
    	for _, test := range tests {
    		if test.a != test.b {
    			t.Errorf("%s: pointer mismatch: %v != %v", test.s, test.a, test.b)
    		}
    		if got := C.GoString(test.a); got != test.s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/test.go

    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    //   - ptest, the package p compiled with added "package p" test files.
    //   - pxtest, the result of compiling any "package p_test" (external) test files.
    //
    // If the package has no "package p_test" test files, pxtest will be nil.
    // If the non-test compilation of package p can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            boolean isModule
        ) {
            DeprecationLogger.deprecateIndirectUsage("The automatic loading of test framework implementation dependencies")
                .withAdvice("Declare the desired test framework directly on the test suite or explicitly declare the test framework implementation dependencies on the test's runtime classpath.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/registry_test.go

    	}
    
    	for _, test := range tests {
    		err := k.SetValue(test.Name, test.Type, test.Data)
    		if err != nil {
    			t.Fatalf("SetValue for %q failed: %v", test.Name, err)
    		}
    	}
    
    	for _, test := range tests {
    		switch test.Type {
    		case registry.DWORD, registry.QWORD:
    			value, valType, err := k.GetIntegerValue(test.Name)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

                }
            """
            file("src/test/java/com/acme/FeatureTest.java") << """package com.acme;
                import org.apache.commons.math3.complex.Complex;
                import org.junit.Test;
                import static org.junit.Assert.*;
    
                public class FeatureTest {
                    @Test
                    public void shouldCompileAndRun() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top