Class TestResultSnapshot

java.lang.Object
net.thucydides.model.reports.history.TestResultSnapshot
All Implemented Interfaces:
Comparable<TestResultSnapshot>

public class TestResultSnapshot extends Object implements Comparable<TestResultSnapshot>
  • Constructor Details

    • TestResultSnapshot

      public TestResultSnapshot(org.joda.time.DateTime time, int specifiedSteps, int passingSteps, int failingSteps, int skippedSteps, String buildId)
    • TestResultSnapshot

      public TestResultSnapshot(int specifiedSteps, int passingSteps, int failingSteps, int skippedSteps, String buildId)
  • Method Details

    • getTime

      public org.joda.time.DateTime getTime()
    • getSpecifiedSteps

      public int getSpecifiedSteps()
    • getPassingSteps

      public int getPassingSteps()
    • getFailingSteps

      public int getFailingSteps()
    • getSkippedSteps

      public int getSkippedSteps()
    • getBuildId

      public String getBuildId()
    • compareTo

      public int compareTo(TestResultSnapshot other)
      Specified by:
      compareTo in interface Comparable<TestResultSnapshot>