(t *testing.T, m slog.Map)
| 252 | } |
| 253 | |
| 254 | func marshalJSON(t *testing.T, m slog.Map) string { |
| 255 | actb, err := json.Marshal(m) |
| 256 | assert.Success(t, "marshal map to JSON", err) |
| 257 | return indentJSON(t, string(actb)) |
| 258 | } |
| 259 | |
| 260 | type complexJSON complex128 |
| 261 |
no test coverage detected