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
* Extra, optional coverage information, collected by different tools.
65
65
*/
66
66
extra?: Coverage[]|null;
67
+
/**
68
+
* Optional list of general 'warnings' regarding the fuzzing process. These are general, and not specific to any generated test case. For example, problems in the schema would be reported here, as well as possible misconfigurations of the fuzzer.
69
+
*/
70
+
warnings?: Warning[]|null;
67
71
[k: string]: unknown;
68
72
}
69
73
exportinterfaceFaults{
@@ -151,6 +155,10 @@ export interface TestCase {
151
155
* The line number in the generated test suite file where the code of this test case ends.
152
156
*/
153
157
endLine?: number;
158
+
/**
159
+
* Optional list of 'named examples' used in the test cases. These typically represent user test data that need to be tracked in the generated test suite.
* Label to specify the type of warning, e.g., if related to the schema or fuzzer misconfiguration.
194
+
*/
195
+
category?: string;
196
+
/**
197
+
* Hint on the priority of this warning message, where lowest (eg, 1) values mean more important. This is ONLY meant to be used for display purposes, e.g., when sorting the list of warnings to show to user.
0 commit comments