Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,408 for suiteID (0.14 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                \\--- libTest:googleTestExe (t)
    
                utilTest - Components that depend on Cunit test suite 'utilTest'
                \\--- utilTest:cUnitExe (t)
    
                (t) - Test suite binary
                """.stripIndent()
    
            where:
            option          | _
            '--all'         | _
            '--test-suites' | _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/JvmTestKind.java

     */
    package org.gradle.tooling.events.test;
    
    /**
     * Enumerates the different kinds of JVM tests. This allows to differentiate between test suites, atomic tests, etc.
     *
     * @since 2.4
     */
    public enum JvmTestKind {
    
        SUITE("Test suite"),
        ATOMIC("Atomic test"),
        UNKNOWN("Unknown test kind");
    
        private final String label;
    
        JvmTestKind(String label) {
            this.label = label;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies-project/groovy/build.gradle

    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies-project[]
    dependencies {
        api 'com.google.guava:guava:30.1.1-jre' // <1>
        implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3' // <2>
    }
    
    testing {
        suites {
            integrationTest(JvmTestSuite) {
                dependencies {
                    implementation project() // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    For the default test suite named 'test', no additional configuration is necessary.  The aggregated reports and their backing tasks of type `TestReport` are synthesized based on the test suites existing in the `application` project.  Test suites having identical `testType` properties will be aggregated.
    
    Running the tests and generate the report:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/test-suite-configure-default-suite/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        java
    }
    
    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-default-suite[]
    testing {
        suites {
            val test by getting(JvmTestSuite::class) {
                useTestNG() // <1>
    
                targets {
                    all {
                        testTask.configure { // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        java
    }
    
    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies[]
    testing {
        suites {
            val test by getting(JvmTestSuite::class) { // <1>
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

     * limitations under the License.
     */
    package okhttp3
    
    /**
     * [TLS cipher suites][iana_tls_parameters].
     *
     * **Not all cipher suites are supported on all platforms.** As newer cipher suites are created (for
     * stronger privacy, better performance, etc.) they will be adopted by the platform and then exposed
     * here. Cipher suites that are not available on either Android (through API level 24) or Java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * for a particular test JVM, 2 corresponds to a test class, and 3 corresponds to a test method. These values may extend higher if user-defined suites or parameterized test methods are executed.  Events
         * from levels lower than the specified granularity will be ignored.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies-project/kotlin/build.gradle.kts

    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies-project[]
    dependencies {
        api("com.google.guava:guava:30.1.1-jre") // <1>
        implementation("com.fasterxml.jackson.core:jackson-databind:2.13.3") // <2>
    }
    
    testing {
        suites {
            val integrationTest by registering(JvmTestSuite::class) {
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each-extracted/kotlin/build.gradle.kts

    }
    
    version = "1.0.0"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::multi-configure[]
    testing {
        suites {
            val applyMockito = { suite: JvmTestSuite -> // <1>
                suite.useJUnitJupiter()
                suite.dependencies {
                    implementation("org.mockito:mockito-junit-jupiter:4.6.1")
                }
            }
    
            /* This is the equivalent of:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top