Interface TestRunResult

  • All Superinterfaces:
    java.lang.Iterable<TestResult>

    public interface TestRunResult
    extends java.lang.Iterable<TestResult>
    A Test Run Result represents the execution of one or multiple ETS against one Test Object. It is the root result element of one or multiple TestTaskResults. If a TestRunResult is used for iteration, the iterator will also traverse all sub results starting with the first Test Task Result.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void delete()
      Delete the report from the remote ETF instance.
      long duration()
      The duration of this test in milliseconds
      java.util.List<java.lang.String> logEntries()
      Get the log entries that were logged during the Test Run
      java.time.LocalDateTime startDate()
      The start data
      java.util.Collection<TestTaskResult> testTaskResults()  
      • Methods inherited from interface java.lang.Iterable

        forEach, iterator, spliterator
    • Method Detail

      • startDate

        java.time.LocalDateTime startDate()
        The start data
        Returns:
        start as date
      • duration

        long duration()
        The duration of this test in milliseconds
        Returns:
        duration in milliseconds
      • testTaskResults

        java.util.Collection<TestTaskResult> testTaskResults()