(t *testing.T)
| 75 | } |
| 76 | |
| 77 | func TestFormatToolCallArguments_MapOfEmptyArray(t *testing.T) { |
| 78 | t.Parallel() |
| 79 | formatted := formatToolCallArguments(`{"array": []}`) |
| 80 | assert.Equal(t, `(array: [])`, formatted) |
| 81 | } |
| 82 | |
| 83 | func TestFormatToolCallArguments_MapOfSingleItemArray(t *testing.T) { |
| 84 | t.Parallel() |
nothing calls this directly
no test coverage detected