Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getResultType (0.19 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestCompleteEvent.java

            this.endTime = endTime;
            this.resultType = resultType;
        }
    
        public long getEndTime() {
            return endTime;
        }
    
        @Nullable
        public TestResult.ResultType getResultType() {
            return resultType;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

            SUCCESS, FAILURE, SKIPPED
        }
    
        /**
         * Returns the type of result.  Generally one wants it to be SUCCESS!
         *
         * @return The result type.
         */
        ResultType getResultType();
    
        /**
         * If the test failed with an exception, this will be the exception.  Some test frameworks do not fail without an
         * exception (JUnit), so in those cases this method will never return null.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/DefaultTestReport.java

                        if (collectedResult.getResultType() == SKIPPED) {
                            testResult.setIgnored();
                        } else {
                            List<TestFailure> failures = collectedResult.getFailures();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:58:15 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top