(t *testing.T)
| 87 | } |
| 88 | |
| 89 | func TestFormatToolCallArguments_PlainText(t *testing.T) { |
| 90 | t.Parallel() |
| 91 | formatted := formatToolCallArguments(`Plain Text`) |
| 92 | |
| 93 | assert.Equal(t, `(Plain Text)`, formatted) |
| 94 | } |
nothing calls this directly
no test coverage detected