Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for includeClasses (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestSpec.java

            this.packages.addAll(packages);
            return this;
        }
    
        @Override
        public TestSpec includeClass(String cls) {
            return includeClasses(Collections.singletonList(cls));
        }
    
        @Override
        public TestSpec includeClasses(Collection<String> classes) {
            this.classes.addAll(classes);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

         * Adds the target test classes to the test execution.
         *
         * @see #includeClass(String)
         * @param classes The fully-qualified name of the target classes.
         * @return this
         */
        TestSpec includeClasses(Collection<String>  classes);
    
        /**
         * Adds the target test method to the test execution.
         * <p>
         * The target method should be selected with its fully-qualified class name and with the name of the method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

                        publicApiPatterns: includedClasses.get(),
                        mainApiChangesJsonFile: mainApiChangesJsonFilePath,
                        projectRootDir: projectRootDirPath
                    ])
                    addRule(MethodsRemovedInInternalSuperClassRule, [
                        acceptedApiChanges: acceptedChangesMap,
                        publicApiPatterns: includedClasses.get(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4FilteringIntegrationTest.groovy

            if (successful) {
                succeeds('test')
            } else {
                fails('test')
            }
    
            then:
            includedClasses.every { output.contains(it) }
            excludedClasses.every { !output.contains(it) }
    
            where:
            pattern             | includedClasses                                                    | excludedClasses        | successful
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        failOnModification = false // we rely on the custom report to fail or not
        ignoreMissingClasses = true // because of a missing scala.runtime.AbstractFunction0 class
        richReport({
            it.includedClasses = toPatterns(PublicApi.includes + PublicKotlinDslApi.includes)
            it.excludedClasses = toPatterns(PublicApi.excludes + PublicKotlinDslApi.excludes)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                                destinationDir.set(file("build/japi"))
                                reportName.set("japi.html")
    
                                includedClasses.set(listOf(".*"))
                                excludedClasses.set(emptyList())
    
                            }
    
                            BinaryCompatibilityHelper.setupJApiCmpRichReportRules(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top