OBJECT

TestRun

Test Run type

link GraphQL Schema definition

1type TestRun {
2
3# Id of the Test Run.
4id: String
5
6# Status of the Test Run.
7status: Status
8
9# Generic definition of the Test issue.
10unstructured: String
11
12# Cucumber definition of the Test issue.
13gherkin: String
14
15# Cucumber Type definition of the Test Run.
16scenarioType: String
17
18# Comment definition of the Test Run.
19comment: String
20
21# Started On date of the Test Run.
22startedOn: String
23
24# Evidence of the Test Run.
25evidence: [Evidence]
26
27# Defects of the Test Run.
28defects: [String]
29
30# Step definition of the Test Run.
31steps: [TestRunStep]
32
33# Examples of the Test Run.
34examples: [Example]
35
36# Results of the Test Run.
37results: [Result]
38
39# Test Type of the Test Run.
40testType: TestType
41
42# User's account id that executed the Test Run.
43executedById: String
44
45# User's account id assigned to the Test Run. This is user assigned to the Test Run, not taking into account the assignee of the test execution.
46assigneeId: String
47
48# Finished On date of the Test Run.
49finishedOn: String
50
51# Preconditions of the Test Run.
52#
53# Arguments
54# limit: the maximum amount of Preconditions to be returned. The maximum is 100.
55# start: the index of the first item to return in the page of results (page offset).
56preconditions(limit: Int!, start: Int): TestRunPreconditionResults
57
58# Test of the Test Run.
59test: Test
60
61# Test version of the Test Run.
62testVersion: TestVersion
63
64# Test Execution of the Test Run.
65testExecution: TestExecution
66
67# Date when the test run was last modified.
68lastModified: String
69
70# Custom Fields of the Test Run.
71customFields: [TestRunCustomFieldValue]
72
73# Parameters of the Test Run.
74parameters: [TestRunParameter]
75
76# Iterations of the Test Run.
77#
78# Arguments
79# limit: the maximum amount of iterations to be returned. The maximum is 100.
80# start: the index of the first item to return in the page of results (page offset).
81iterations(limit: Int!, start: Int): TestRunIterationResults
82
83}