@@ -97,9 +97,9 @@ or returns `false` if it could not generate the relevant content. On successful
9797return, the caller is responsible for deinitializing the memory at ` outValue `
9898when done with it.
9999
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.)
103103
104104The second argument to this function, ` hint ` , is an optional input that can be
105105passed 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:
140140- For test or suite declarations (kind ` 0x74657374 ` ), this field contains a bit
141141 mask with the following flags currently defined:
142142
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 |
147147
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 ` .
149149
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 ` .
152152
153153#### The reserved1 and reserved2 fields
154154
0 commit comments