(t *testing.T)
| 53 | } |
| 54 | |
| 55 | func TestFormatToolCallArguments_Map(t *testing.T) { |
| 56 | t.Parallel() |
| 57 | formatted := formatToolCallArguments(`{"first": "hello", "second": 42}`) |
| 58 | |
| 59 | assert.Equal(t, `( |
| 60 | first: "hello" |
| 61 | second: 42 |
| 62 | )`, formatted) |
| 63 | } |
| 64 | |
| 65 | func TestFormatToolCallArguments_MapOfArray(t *testing.T) { |
| 66 | t.Parallel() |
nothing calls this directly
no test coverage detected