Interface FilteredTestResults<T extends TestClassResultDescriptor>

    • Method Detail

      • getNewFailedTests

        @NotNull
        @NotNull com.google.common.collect.Multimap<T,​TestCaseResult> getNewFailedTests()
        Returns Multimap of TestCaseResult that have failed, but were not failing in the last build. Does not include Quarantined Tests
        Returns:
        Immutable Multimap, with TestClassResult keys and TestCaseResult as value.
      • getExistingFailedTests

        @NotNull
        @NotNull com.google.common.collect.Multimap<T,​TestCaseResult> getExistingFailedTests()
        Returns Multimap of TestCaseResult that were failing in the previous build and are still failing. Does not include Quarantined Tests
        Returns:
        Immutable Multimap, with TestClassResult keys and TestCaseResult as value.
      • getFixedTests

        @NotNull
        @NotNull com.google.common.collect.Multimap<T,​TestCaseResult> getFixedTests()
        Returns Multimap of TestCaseResult that have been fixed in this build. Does not include Quarantined Tests.
        Returns:
        Immutable Multimap, with TestClassResult keys and TestCaseResult as value.
      • getQuarantinedTests

        @NotNull
        @NotNull com.google.common.collect.Multimap<T,​TestCaseResult> getQuarantinedTests()
        Returns Multimap of TestCaseResult that were Quarantined in this build, whether failed, successful or skipped.
        Returns:
        Immutable Multimap, with TestClassResult keys and TestCaseResult as value.
      • getAllFailedTestList

        @NotNull
        @NotNull List<TestCaseResult> getAllFailedTestList()
        Returns:
        All failed tests for this build as a list of testCaseResult
      • getSkippedTestList

        @NotNull
        @NotNull List<TestCaseResult> getSkippedTestList()
        Returns:
        Skipped tests for this build as a list of testCaseResult