You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The list of relative paths (compared to this document) of all the generated test suite files.
39
53
*/
40
-
test_file_paths: string[];
54
+
test_file_paths: TestFilePath[];
41
55
/**
42
56
* Information on each generated test case.
43
57
*/
@@ -63,14 +77,8 @@ export interface Faults {
63
77
* Data-structure to represent found faults, based on operations (e.g., HTTP endpoints in REST, and methods in GraphQL and RPC) and which tests find faults in them.
64
78
*/
65
79
exportinterfaceFoundFault{
66
-
/**
67
-
* A unique identifier for an operation. For example, in REST, it would be a HTTP endpoint, including verb, e.g., 'GET:/users/{id}'.
68
-
*/
69
-
operation_id?: string;
70
-
/**
71
-
* A unique identifier for a test case. It could include its name and file location.
72
-
*/
73
-
test_case_id: string;
80
+
operation_id?: OperationId;
81
+
test_case_id: TestCaseId;
74
82
/**
75
83
* @minItems 1
76
84
*/
@@ -99,7 +107,7 @@ export interface RESTReport {
99
107
/**
100
108
* Unique ids of all the endpoints in the tested API.
101
109
*/
102
-
endpoint_ids: string[];
110
+
endpoint_ids: OperationId[];
103
111
/**
104
112
* List of which HTTP status codes were covered, based on endpoints.
0 commit comments