(t *testing.T)
| 729 | } |
| 730 | |
| 731 | func TestComputeTokenUsageDiff_BothNil(t *testing.T) { |
| 732 | diff := computeTokenUsageDiff(nil, nil) |
| 733 | assert.Nil(t, diff, "Should return nil when both summaries are nil") |
| 734 | } |
| 735 | |
| 736 | func TestComputeTokenUsageDiff_WithData(t *testing.T) { |
| 737 | tu1 := &TokenUsageSummary{ |
nothing calls this directly
no test coverage detected