Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for frameworkFailures (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestFailureProgressEventCrossVersionTest.groovy

            frameworkFailures[0].message == null
            frameworkFailures[0].description.length() > 100
            frameworkFailures[0].description.contains('AppException')
            frameworkFailures[0].causes.empty
            frameworkFailures[0].className == 'AppException'
            frameworkFailures[0].stacktrace == frameworkFailures[0].description
    
            frameworkFailures[1].message == 'TestNG runtime exception'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                );
            } else if (origFailure instanceof InternalTestFrameworkFailure) {
                InternalTestFrameworkFailure frameworkFailure = (InternalTestFrameworkFailure) origFailure;
                return new DefaultTestFrameworkFailure(
                    frameworkFailure.getMessage(),
                    frameworkFailure.getDescription(),
                    toFailures(origFailure.getCauses()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top