Provide clarification on the status integer numbers in the Test Manager database and specify which number corresponds to which status?
Issue Description: Provide clarification on the status integer numbers in the Test Manager database and specify which number corresponds to which status?
Resolution: Refer to the Swagger documentation for information on the run status details from Orchestrator.
- It is recommended to always use the Text representation of Enums, instead of numbers.
This has been verified for the API that returns the TestExecutionDto, where the Enums are transferred as text, not integers, as shown in the screenshot below.
public enum TestExecutionStatus
{
Pending = 1,
Running = 2,
Cancelling = 3,
Finished = 4,
Cancelled = 5
}