(t *testing.T)
| 565 | } |
| 566 | |
| 567 | func TestComputeRunMetricsDiff_BothNil(t *testing.T) { |
| 568 | diff := computeRunMetricsDiff(nil, nil) |
| 569 | assert.Nil(t, diff, "Should return nil when both summaries are nil") |
| 570 | } |
| 571 | |
| 572 | func TestComputeRunMetricsDiff_AllZero(t *testing.T) { |
| 573 | summary1 := &RunSummary{Run: WorkflowRun{}} |
nothing calls this directly
no test coverage detected