(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func TestFormatToolCallResponse_MapOfArray(t *testing.T) { |
| 30 | t.Parallel() |
| 31 | formatted := formatToolCallResponse(`{"array": [1,2,3]}`) |
| 32 | assert.Equal(t, ` → ( |
| 33 | array: [ |
| 34 | 1, |
| 35 | 2, |
| 36 | 3 |
| 37 | ] |
| 38 | )`, formatted) |
| 39 | } |
| 40 | |
| 41 | func TestFormatToolCallResponse_PlainText(t *testing.T) { |
| 42 | t.Parallel() |
nothing calls this directly
no test coverage detected