(t *testing.T)
| 46 | } |
| 47 | |
| 48 | func TestFormatToolCallArguments_Empty(t *testing.T) { |
| 49 | t.Parallel() |
| 50 | formatted := formatToolCallArguments(``) |
| 51 | |
| 52 | assert.Equal(t, `()`, formatted) |
| 53 | } |
| 54 | |
| 55 | func TestFormatToolCallArguments_Map(t *testing.T) { |
| 56 | t.Parallel() |
nothing calls this directly
no test coverage detected