Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getResultType (0.21 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)
Back to top