-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test that uses the get_filtered_defects function
- Loading branch information
1 parent
38e9745
commit 13cbd66
Showing
2 changed files
with
206 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
{ | ||
"offset": 0, | ||
"totalRows": 4, | ||
"columns": [ | ||
"lastTriageComment", | ||
"classification", | ||
"checker", | ||
"cid" | ||
], | ||
"rows": [ | ||
[ | ||
{ | ||
"key": "lastTriageComment", | ||
"value": "" | ||
}, | ||
{ | ||
"key": "classification", | ||
"value": "Intentional" | ||
}, | ||
{ | ||
"key": "checker", | ||
"value": "MISRA 1" | ||
}, | ||
{ | ||
"key": "cid", | ||
"value": "189049" | ||
}, | ||
{ | ||
"key": "lineNumber", | ||
"value": "25" | ||
}, | ||
{ | ||
"key": "displayFile", | ||
"value": "/some/fake/file.c" | ||
}, | ||
{ | ||
"key": "externalReference", | ||
"value": "REFERENCE1" | ||
}, | ||
{ | ||
"key": "status", | ||
"value": "Triaged" | ||
} | ||
], | ||
[ | ||
{ | ||
"key": "lastTriageComment", | ||
"value": "Some fake comment" | ||
}, | ||
{ | ||
"key": "classification", | ||
"value": "Intentional" | ||
}, | ||
{ | ||
"key": "checker", | ||
"value": "MISRA 2" | ||
}, | ||
{ | ||
"key": "cid", | ||
"value": "189050" | ||
}, | ||
{ | ||
"key": "lineNumber", | ||
"value": "89" | ||
}, | ||
{ | ||
"key": "displayFile", | ||
"value": "/some/fake/file.c" | ||
}, | ||
{ | ||
"key": "externalReference", | ||
"value": "" | ||
}, | ||
{ | ||
"key": "status", | ||
"value": "Dismissed" | ||
} | ||
], | ||
[ | ||
{ | ||
"key": "lastTriageComment", | ||
"value": "Some fake comment" | ||
}, | ||
{ | ||
"key": "classification", | ||
"value": "Pending" | ||
}, | ||
{ | ||
"key": "checker", | ||
"value": "MISRA 3" | ||
}, | ||
{ | ||
"key": "cid", | ||
"value": "367264" | ||
}, | ||
{ | ||
"key": "lineNumber", | ||
"value": "10" | ||
}, | ||
{ | ||
"key": "displayFile", | ||
"value": "/fake/file.c" | ||
}, | ||
{ | ||
"key": "externalReference", | ||
"value": "REFERENCE3" | ||
}, | ||
{ | ||
"key": "status", | ||
"value": "Dismissed" | ||
} | ||
], | ||
[ | ||
{ | ||
"key": "lastTriageComment", | ||
"value": "Another comment" | ||
}, | ||
{ | ||
"key": "classification", | ||
"value": "Pending" | ||
}, | ||
{ | ||
"key": "checker", | ||
"value": "CHECK" | ||
}, | ||
{ | ||
"key": "cid", | ||
"value": "367265" | ||
}, | ||
{ | ||
"key": "lineNumber", | ||
"value": "34" | ||
}, | ||
{ | ||
"key": "displayFile", | ||
"value": "/fake/file.c" | ||
}, | ||
{ | ||
"key": "externalReference", | ||
"value": "" | ||
}, | ||
{ | ||
"key": "status", | ||
"value": "Triaged" | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters