| 192 | } |
| 193 | |
| 194 | TestMode testMode() const { |
| 195 | return static_cast<TestMode>((value & ((1L << 32) - 1)) >> 24); |
| 196 | } |
| 197 | |
| 198 | CommitStrategy commitStrategy() const { |
| 199 | return static_cast<CommitStrategy>((value & ((1L << 24) - 1)) >> 16); |
no outgoing calls
no test coverage detected