Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,408 for suiteID (0.15 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

        return result;
      }
    
      @Override
      public TestSuite createTestSuite() {
        withFeatures(KNOWN_ORDER);
        TestSuite suite = super.createTestSuite();
        for (TestSuite subSuite : createDerivedSuites(this)) {
          suite.addTest(subSuite);
        }
        return suite;
      }
    
      @SuppressWarnings("rawtypes") // class literals
      @Override
      protected List<Class<? extends AbstractTester>> getTesters() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

        }
    
        def "reports all test failures for multiple suites"() {
            given:
            expectFirstTestSuiteFailsButSecondPasses()
    
            when:
            task.executeTests()
    
            then:
            GradleException e = thrown()
            e.message.startsWith("There were failing tests. See the report at")
        }
    
        def "does not report task as failed if first suite contained tests"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskFailOnNoTestIntegrationTest.groovy

            buildFile << """
                plugins {
                    id 'java'
                    id 'jvm-test-suite'
                }
                ${mavenCentralRepository()}
                dependencies {
                    testImplementation 'org.junit.jupiter:junit-jupiter:${LATEST_JUPITER_VERSION}'
                }
                testing.suites.test {
                    useJUnitJupiter()
                }
            """.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

        return result;
      }
    
      @Override
      public TestSuite createTestSuite() {
        withFeatures(KNOWN_ORDER);
        TestSuite suite = super.createTestSuite();
        for (TestSuite subSuite : createDerivedSuites(this)) {
          suite.addTest(subSuite);
        }
        return suite;
      }
    
      @SuppressWarnings("rawtypes") // class literals
      @Override
      protected List<Class<? extends AbstractTester>> getTesters() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithProjectDependenciesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies in jvm test suites are marked with test classpath attribute"() {
            file('a/build.gradle') << """
                plugins {
                    id 'jvm-test-suite'
                }
    
                testing {
                    suites {
                        integration(JvmTestSuite) {
                            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSuitesIntegrationTest.groovy

        abstract String getTestFrameworkSuiteDependencies()
        abstract String getTestFrameworkSuiteImports()
        abstract String getTestFrameworkSuiteAnnotations(String classes)
    
        def "test classes can be shared by multiple suites"() {
            given:
            file('src/test/java/org/gradle/SomeTest.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class SomeTest {
                    @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                            return fileName.replace('junit', 'renamed-junit')
                        }
                    }
                }
    
                testing.suites.test.sources.runtimeClasspath =
                    testing.suites.test.sources.output.plus(
                        renameJUnitJars.outputs.files.asFileTree.matching {
                            include '**/*.jar'
                        }
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

                getJvmPluginServices().configureAsRuntimeClasspath(testAggregation);
            });
    
            // convention for synthesizing reports based on existing test suites in "this" project
            project.getPlugins().withId("jvm-test-suite", plugin -> {
                // Depend on this project for aggregation
                testAggregation.getDependencies().add(project.getDependencyFactory().create(project));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

                });
            });
    
            // convention for synthesizing reports based on existing test suites in "this" project
            project.getPlugins().withId("jvm-test-suite", plugin -> {
                // Depend on this project for aggregation
                jacocoAggregation.getDependencies().add(project.getDependencyFactory().create(project));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/jvm/component/internal/JvmSoftwareComponentInternal.java

         * Get all features owned by this component.
         */
        NamedDomainObjectContainer<JvmFeatureInternal> getFeatures();
    
        /**
         * Get all test suites owned by this component.
         *
         * TODO: A test suite is a feature, so this method should eventually be removed and all
         * suites should be accessed via {@link #getFeatures()}.
         */
        NamedDomainObjectContainer<TestSuite> getTestSuites();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top