Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for includeCommandLineTest (0.18 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionBuildConfigurationAction.java

                            filter.includeCommandLineTest(cls, null);
                        }
                        for (Map.Entry<String, List<String>> entry : testSpec.getMethods().entrySet()) {
                            String cls = entry.getKey();
                            for (String method : entry.getValue()) {
                                filter.includeCommandLineTest(cls, method);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/filter/DefaultTestFilter.java

            }
            this.commandLineIncludeTestNames.clear();
            this.commandLineIncludeTestNames.addAll(testNamePatterns);
            return this;
        }
    
        public TestFilter includeCommandLineTest(String className, String methodName) {
            return addToFilteringSet(commandLineIncludeTestNames, className, methodName);
        }
    
        public TestFilterSpec toSpec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top