(t *testing.T)
| 63 | } |
| 64 | |
| 65 | func TestFormatToolCallArguments_MapOfArray(t *testing.T) { |
| 66 | t.Parallel() |
| 67 | formatted := formatToolCallArguments(`{"array": [1,2,3]}`) |
| 68 | assert.Equal(t, `( |
| 69 | array: [ |
| 70 | 1, |
| 71 | 2, |
| 72 | 3 |
| 73 | ] |
| 74 | )`, formatted) |
| 75 | } |
| 76 | |
| 77 | func TestFormatToolCallArguments_MapOfEmptyArray(t *testing.T) { |
| 78 | t.Parallel() |
nothing calls this directly
no test coverage detected