Class TestResultSnapshot

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

public class TestResultSnapshot
extends java.lang.Object
implements java.lang.Comparable<TestResultSnapshot>
  • Constructor Summary

    Constructors
    Constructor Description
    TestResultSnapshot​(int specifiedSteps, int passingSteps, int failingSteps, int skippedSteps, java.lang.String buildId)  
    TestResultSnapshot​(org.joda.time.DateTime time, int specifiedSteps, int passingSteps, int failingSteps, int skippedSteps, java.lang.String buildId)  
  • Method Summary

    Modifier and Type Method Description
    int compareTo​(TestResultSnapshot other)  
    java.lang.String getBuildId()  
    int getFailingSteps()  
    int getPassingSteps()  
    int getSkippedSteps()  
    int getSpecifiedSteps()  
    org.joda.time.DateTime getTime()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TestResultSnapshot

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

      public TestResultSnapshot​(int specifiedSteps, int passingSteps, int failingSteps, int skippedSteps, java.lang.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 java.lang.String getBuildId()
    • compareTo

      public int compareTo​(TestResultSnapshot other)
      Specified by:
      compareTo in interface java.lang.Comparable<TestResultSnapshot>