(t *testing.T)
| 39 | } |
| 40 | |
| 41 | func TestFormatToolCallResponse_PlainText(t *testing.T) { |
| 42 | t.Parallel() |
| 43 | formatted := formatToolCallResponse(`Plain Text`) |
| 44 | |
| 45 | assert.Equal(t, ` → "Plain Text"`, formatted) |
| 46 | } |
| 47 | |
| 48 | func TestFormatToolCallArguments_Empty(t *testing.T) { |
| 49 | t.Parallel() |
nothing calls this directly
no test coverage detected