--- Tool calls diff tests ---
(t *testing.T)
| 1070 | // --- Tool calls diff tests --- |
| 1071 | |
| 1072 | func TestComputeToolCallsDiff_BothNil(t *testing.T) { |
| 1073 | result := computeToolCallsDiff(nil, nil) |
| 1074 | assert.Nil(t, result, "Should return nil when both metrics are nil") |
| 1075 | } |
| 1076 | |
| 1077 | func TestComputeToolCallsDiff_BothEmpty(t *testing.T) { |
| 1078 | m1 := &LogMetrics{} |
nothing calls this directly
no test coverage detected