Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,408 for suiteID (0.22 sec)

  1. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForTestNgTests/build.gradle

    plugins {
        id("java")
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation 'org.testng:testng:6.8.7'
    }
    
    test {
        ignoreFailures = true
        useTestNG {
            suites "suite.xml"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 833 bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

      /**
       * To avoid infinite recursion, test suites with these marker features won't have derived suites
       * created for them.
       */
      enum NoRecurse implements Feature<@Nullable Void> {
        SUBMAP,
        DESCENDING;
    
        @Override
        public Set<Feature<? super @Nullable Void>> getImpliedFeatures() {
          return Collections.emptySet();
        }
      }
    
      /**
       * Creates a suite whose map has some elements filtered out of view.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-test-report-aggregation/build.gradle.kts

        implementation(project(":core"))
        implementation(project(":plugins-java-base"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":reporting"))
        implementation(project(":testing-base"))
        implementation(project(":testing-jvm"))
        implementation(project(":test-suites-base"))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/groovy/build.gradle

     * limitations under the License.
     */
    
    plugins {
        id 'java'
        id 'jvm-test-suite'
    }
    
    version = '1.0.0'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            // tag::version-catalogs-deps[]
            test {
                dependencies {
                    runtimeOnly libs.guava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/README.adoc

    IMPORTANT: Test Suites are an link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] feature, and the details described here may change.
    
    Here, the link:{userManualPath}/jvm_test_suite_plugin.html[Test Suite Plugin] creates an additional source set _integrationTest_ with a `module-info.java`.
    
    
    ```
    src
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/build.gradle.kts

        api(libs.inject)
        api(libs.jsr305)
    
        implementation(project(":dependency-management"))
        implementation(project(":logging"))
        implementation(project(":model-core"))
        implementation(project(":test-suites-base"))
    
        implementation(libs.guava)
    
        testImplementation(project(":native"))
        testImplementation(project(":resources"))
        testImplementation(project(":snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

                ${mavenCentralRepository()}
    
                dependencies {
                    implementation "org.codehaus.groovy:groovy:2.4.10"
                }
    
                testing {
                    suites {
                        test {
                            useTestNG('6.3.1')
    
                            targets {
                                all {
                                    testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"plugin-use",
    					"native",
    					"java-compiler-plugin",
    					"file-temp",
    					"concurrent",
    					"functional",
    					"test-suites-base",
    					"internal-testing",
    					"io",
    					"testing-jvm-infrastructure",
    					"cli"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

      /**
       * To avoid infinite recursion, test suites with these marker features won't have derived suites
       * created for them.
       */
      enum NoRecurse implements Feature<@Nullable Void> {
        SUBMAP,
        DESCENDING;
    
        @Override
        public Set<Feature<? super @Nullable Void>> getImpliedFeatures() {
          return Collections.emptySet();
        }
      }
    
      /**
       * Creates a suite whose map has some elements filtered out of view.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `jacocoAggregation` configuration
    <2> Define a report of type `JacocoCoverageReport` which collects coverage data from unit test suites
    <3> Optional: make JaCoCo aggregate report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top