diff --git a/Documentation/ABI/JSON.md b/Documentation/ABI/JSON.md index e4ff24a4b..d2885470a 100644 --- a/Documentation/ABI/JSON.md +++ b/Documentation/ABI/JSON.md @@ -157,10 +157,23 @@ additional `"testCases"` field describing the individual test cases. ["displayName": ,] ; the user-supplied custom display name "sourceLocation": , ; where the test is defined "id": , - "isParameterized": ; is this a parameterized test function or not? + "isParameterized": , ; is this a parameterized test function or not? + ["tags": ,] ; the tags associated with this test function + ["bugs": ,] ; the bugs associated with this test function + ["timeLimit": ] ; the time limit associated with this test function + } ::= ; an opaque string representing the test case + + ::= ; a string representation of a tag + + ::= { + ["url": ,] ; the bug url + ["id": ,] ; the bug id + "title": ; the human readable bug title +} ; + ```