TestWrapJSONResponseParseError_Nil pins nil pass-through.
(t *testing.T)
| 254 | |
| 255 | // TestWrapJSONResponseParseError_Nil pins nil pass-through. |
| 256 | func TestWrapJSONResponseParseError_Nil(t *testing.T) { |
| 257 | if got := WrapJSONResponseParseError(nil, []byte("anything")); got != nil { |
| 258 | t.Errorf("WrapJSONResponseParseError(nil, ...) = %v, want nil", got) |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | // ───────────────────────────────────────────────────────────────────────────── |
| 263 | // Cross-cutting: existing tests already in this file (kept and adjusted below). |
nothing calls this directly
no test coverage detected