@@ -97,9 +97,9 @@ or returns `false` if it could not generate the relevant content. On successful
97
97
return, the caller is responsible for deinitializing the memory at ` outValue `
98
98
when done with it.
99
99
100
- ` accessor ` is optional. If it is ` nil ` , the test content record is ignored. The
101
- testing library may, in the future, define record kinds that do not provide an
102
- accessor function (that is, they represent pure compile-time information only.)
100
+ If ` accessor ` is ` nil ` , the test content record is ignored. The testing library
101
+ may, in the future, define record kinds that do not provide an accessor function
102
+ (that is, they represent pure compile-time information only.)
103
103
104
104
The second argument to this function, ` hint ` , is an optional input that can be
105
105
passed to help the accessor function determine if its corresponding test content
@@ -140,15 +140,15 @@ content record that needs to be made available before the accessor is called:
140
140
- For test or suite declarations (kind ` 0x74657374 ` ), this field contains a bit
141
141
mask with the following flags currently defined:
142
142
143
- | Bit | Description |
144
- | -:| -|
145
- | ` 1 << 0 ` | This record contains a suite declaration |
146
- | ` 1 << 1 ` | This record contains a parameterized test function declaration |
143
+ | Bit | Value | Description |
144
+ | -:| -: | - |
145
+ | ` 1 << 0 ` | ` 1 ` | This record contains a suite declaration |
146
+ | ` 1 << 1 ` | ` 2 ` | This record contains a parameterized test function declaration |
147
147
148
- Other bits are currently always set to ` 0 ` , but may be used in the future .
148
+ Other bits are reserved for future use and must be set to ` 0 ` .
149
149
150
- - For exit test declarations (kind ` 0x65786974 ` ), this field is not used and
151
- should be set to ` 0 ` .
150
+ - For exit test declarations (kind ` 0x65786974 ` ), this field is reserved for
151
+ future use and must be set to ` 0 ` .
152
152
153
153
#### The reserved1 and reserved2 fields
154
154
0 commit comments