boolPtr returns a pointer to a bool value. This is a shared helper used by both unit and integration tests.
(b bool)
| 3 | // boolPtr returns a pointer to a bool value. |
| 4 | // This is a shared helper used by both unit and integration tests. |
| 5 | func boolPtr(b bool) *bool { |
| 6 | return new(b) |
| 7 | } |
| 8 | |
| 9 | // ptrBool returns a pointer to a bool value. |
| 10 | func ptrBool(b bool) *bool { |
no outgoing calls
no test coverage detected