(t *testing.T)
| 1075 | } |
| 1076 | |
| 1077 | func TestComputeToolCallsDiff_BothEmpty(t *testing.T) { |
| 1078 | m1 := &LogMetrics{} |
| 1079 | m2 := &LogMetrics{} |
| 1080 | result := computeToolCallsDiff(m1, m2) |
| 1081 | assert.Nil(t, result, "Should return nil when both metrics have no tool calls") |
| 1082 | } |
| 1083 | |
| 1084 | func TestComputeToolCallsDiff_DuplicateToolNames(t *testing.T) { |
| 1085 | // When the same tool name appears multiple times (e.g. metrics aggregated from multiple log files), |
nothing calls this directly
no test coverage detected