Class ImportExecutionResultsRequestDto

java.lang.Object
de.qytera.qtaf.xray.dto.request.xray.ImportExecutionResultsRequestDto

public class ImportExecutionResultsRequestDto extends Object
Xray import request DTO. This class represents the JSON structure that Xray API expects when importing tests.
See Also:
  • Constructor Details

    • ImportExecutionResultsRequestDto

      public ImportExecutionResultsRequestDto()
  • Method Details

    • getTestExecutionKey

      public String getTestExecutionKey()
      The test execution key where to import the execution results.
    • getInfo

      public XrayTestExecutionInfoEntity getInfo()
      The info object for creating new Test Execution issues.
    • getTests

      public List<XrayTestEntity> getTests()
      The Test Run result details.
    • setTestExecutionKey

      public void setTestExecutionKey(String testExecutionKey)
      The test execution key where to import the execution results.
    • setInfo

      public void setInfo(XrayTestExecutionInfoEntity info)
      The info object for creating new Test Execution issues.
    • setTests

      public void setTests(List<XrayTestEntity> tests)
      The Test Run result details.