Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,408 for suiteID (0.13 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

        }
    
        /**
         * <p>Adds a closure to be notified before a test suite is executed. A {@link TestDescriptor} instance is passed to the closure as a parameter.</p>
         *
         * <p>This method is also called before any test suites are executed. The provided descriptor will have a null parent suite.</p>
         *
         * @param closure The closure to call.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

        }
    
        def "can not publish test results from java test suite"() {
            given:
            createBuildScripts("""
                ${mavenCentralRepository()}
    
                testing {
                    suites {
                        test {
                            useJUnit()
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            configurations.getByName(mainSourceSet.getRuntimeClasspathConfigurationName()).extendsFrom(implementation, runtimeOnly);
            // Update the default test suite's source set to extend our "extension" feature's dependency scopes.
            configurations.getByName(JvmConstants.TEST_COMPILE_CLASSPATH_CONFIGURATION_NAME).extendsFrom(implementation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    plugins {
        id 'java'
    }
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            test {
                useJUnitJupiter('5.7.1')
            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project()
                }
    
                targets {
                    all {
                        testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 594 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    plugins {
        java
    }
    
    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            val test by getting(JvmTestSuite::class) {
                useJUnitJupiter("5.7.1")
            }
    
            val integrationTest by registering(JvmTestSuite::class) {
                dependencies {
                    implementation(project())
                }
    
                targets {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 661 bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitSamplesIntegrationTest.groovy

            passingResults.suiteNames == ['operator tests']
            passingResults.suites['operator tests'].passingTests == ['test_plus', 'test_minus']
            passingResults.suites['operator tests'].failingTests == []
            passingResults.checkTestCases(2, 2, 0)
            passingResults.checkAssertions(6, 6, 0)
    
            when:
            sample cunit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    plugins {
        id 'java'
    }
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            test {
                useJUnitJupiter('5.7.1')
            }
    
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project()
                }
    
                targets {
                    all {
                        testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 594 bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

            this.showNonBuildable = showNonBuildable;
        }
    
        /**
         * Should this include test suites in the report?
         */
        @Console
        public boolean isShowTestSuites() {
            return showTestSuites;
        }
    
        @Option(option = "test-suites", description = "Show test suites components.")
        public void setShowTestSuites(boolean showTestSuites) {
            this.showTestSuites = showTestSuites;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    		compressionMethods: []uint8{compressionNone},
    	}
    	serverConfig := testConfig.Clone()
    	// Reset the enabled cipher suites to nil in order to test the
    	// defaults.
    	serverConfig.CipherSuites = nil
    	testClientHelloFailure(t, serverConfig, clientHello, "no cipher suite supported by both client and server")
    }
    
    func TestRejectSNIWithTrailingDot(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/assembleDependentComponentsReport.out

    +--- operators:failingSharedLibrary
    +--- operators:failingStaticLibrary
    +--- operators:passingSharedLibrary
    \--- operators:passingStaticLibrary
    
    Some test suites were not shown, use --test-suites or --all to show them.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 512 bytes
    - Viewed (0)
Back to top