-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathmessage-id.lua
More file actions
28 lines (25 loc) · 974 Bytes
/
message-id.lua
File metadata and controls
28 lines (25 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---@enum MessageId
local MessageId = {
-- Notification about a test inside the test suite.
-- TEST_TREE + testId + "," + testName + "," + isSuite + "," + testCount + "," + isDynamicTest +
-- "," + parentId + "," + displayName + "," + parameterTypes + "," + uniqueId
-- isSuite = "true" or "false"
-- isDynamicTest = "true" or "false"
-- parentId = the unique id of its parent if it is a dynamic test, otherwise can be "-1"
-- displayName = the display name of the test
-- parameterTypes = comma-separated list of method parameter types if applicable, otherwise an
-- empty string
-- uniqueId = the unique ID of the test provided by JUnit launcher, otherwise an empty string
TestTree = '%TSTTREE',
TestStart = '%TESTS',
TestEnd = '%TESTE',
TestFailed = '%FAILED',
TestError = '%ERROR',
ExpectStart = '%EXPECTS',
ExpectEnd = '%EXPECTE',
ActualStart = '%ACTUALS',
ActualEnd = '%ACTUALE',
TraceStart = '%TRACES',
TraceEnd = '%TRACEE',
}
return MessageId