public interface TraceLinkService
| Modifier and Type | Method and Description |
|---|---|
ServiceResult<Long> |
getTestCaseTraceLinkCountByIssueId(String userKey,
Long issueId)
Returns the number of TraceLinks between an Issue and TestCase that exist for the provided issueId.
|
ServiceResult<List<TraceLinkModel>> |
getTraceLinkModelsByTestCaseId(String userKey,
Long testCaseId)
Returns a
List of TraceLinkModel related to a given testCaseId. |
ServiceResult<List<TraceLinkModel>> |
getTraceLinkModelsByTestCycleId(String userKey,
Long testCycleId)
Returns a
List of TraceLinkModel related to a given testCycleId. |
ServiceResult<List<TraceLinkModel>> |
getTraceLinkModelsByTestExecutionId(String userKey,
Long testExecutionId)
Returns a
List of TraceLinkModel related to a given testExecutionId. |
ServiceResult<List<TraceLinkModel>> getTraceLinkModelsByTestCaseId(String userKey, Long testCaseId)
List of TraceLinkModel related to a given testCaseId.userKey - an identifier that uniquely identifies a user which is performing the action.testCaseId - the id of the Test Case.ServiceResult containing a List of TraceLinkModel
with the TraceLinks related to the testCaseId.
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.ServiceResult<List<TraceLinkModel>> getTraceLinkModelsByTestCycleId(String userKey, Long testCycleId)
List of TraceLinkModel related to a given testCycleId.userKey - an identifier that uniquely identifies a user which is performing the action.testCycleId - the id of the Test Cycle.ServiceResult containing a List of TraceLinkModel
with the TraceLinks related to the testCycleId.
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.ServiceResult<List<TraceLinkModel>> getTraceLinkModelsByTestExecutionId(String userKey, Long testExecutionId)
List of TraceLinkModel related to a given testExecutionId.userKey - an identifier that uniquely identifies a user which is performing the action.testExecutionId - the id of the Test Execution.ServiceResult containing a List of TraceLinkModel
with the TraceLinks related to the testExecutionId.
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.ServiceResult<Long> getTestCaseTraceLinkCountByIssueId(String userKey, Long issueId)
userKey - an identifier that uniquely identifies a user which is performing the action.issueId - the id of the Issue.ServiceResult containing a Long
with the number of TraceLinks between an Issue and the TestCases that exist for the provided issueId.
The result will also contains a ValidationResult
that will contain any validation messages that may have been generated when performing the operation.Copyright © 2020. All rights reserved.