Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNoMatchingTestErrorReasons (0.23 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

            return "No tests found for given includes: "
                + Joiner.on(' ').join(getNoMatchingTestErrorReasons());
        }
    
        /**
         * Returns the reasons for no matching test error.
         *
         * @since 4.5
         */
        @Internal
        protected List<String> getNoMatchingTestErrorReasons() {
            List<String> reasons = new ArrayList<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

                    (DefaultTestFilter) getFilter());
            } else {
                return testExecuter;
            }
        }
    
        @Override
        protected List<String> getNoMatchingTestErrorReasons() {
            List<String> reasons = new ArrayList<>();
            if (!getIncludes().isEmpty()) {
                reasons.add(getIncludes() + "(include rules)");
            }
            if (!getExcludes().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top