Class QtafTestEventPayload

java.lang.Object
de.qytera.qtaf.core.events.payload.QtafTestEventPayload
All Implemented Interfaces:
IQtafTestEventPayload
Direct Known Subclasses:
CucumberScenarioEventPayload, TestNGTestEventPayload

public class QtafTestEventPayload extends Object implements IQtafTestEventPayload
Entity class for test events
  • Field Details

    • originalEvent

      protected Object originalEvent
      Original event fired by the test framework (TestNG, Cucumber, ...)
    • featureId

      protected int featureId
      ID of the test feature
    • featureName

      protected String featureName
      Name of the feature
    • featureDescription

      protected String featureDescription
      Description of the feature
    • scenarioId

      protected String scenarioId
      ID of the scenario
    • scenarioName

      protected String scenarioName
      Name of the scenario
    • scenarioDescription

      protected String scenarioDescription
      Description of the scenario
    • scenarioStatus

      protected ScenarioStatus scenarioStatus
      Status of the scenario
    • scenarioStart

      protected Date scenarioStart
      Start date of the scenario
    • scenarioEnd

      protected Date scenarioEnd
      End date of the scenario
    • threadId

      protected long threadId
      Thread ID of the scenario
    • threadName

      protected String threadName
      Thread name of the scenario
    • scenarioParameters

      protected Parameter[] scenarioParameters
      Parameters that were passed to the scenario
    • parameterValues

      protected Object[] parameterValues
      Values of the parameters that were passed to the scenario
    • groups

      protected String[] groups
      scenario groups
    • groupDependencies

      protected String[] groupDependencies
      All groups that the scenario depends on (see TestNG group dependencies)
    • methodDependencies

      protected String[] methodDependencies
      All test methods the scenario depends on (see testNG method dependencies)
  • Constructor Details

    • QtafTestEventPayload

      public QtafTestEventPayload()
  • Method Details