(t *testing.T)
| 570 | } |
| 571 | |
| 572 | func TestComputeRunMetricsDiff_AllZero(t *testing.T) { |
| 573 | summary1 := &RunSummary{Run: WorkflowRun{}} |
| 574 | summary2 := &RunSummary{Run: WorkflowRun{}} |
| 575 | |
| 576 | diff := computeRunMetricsDiff(summary1, summary2) |
| 577 | assert.Nil(t, diff, "Should return nil when all metrics are zero") |
| 578 | } |
| 579 | |
| 580 | func TestComputeAuditDiff_CombinesAllSections(t *testing.T) { |
| 581 | summary1 := &RunSummary{ |
nothing calls this directly
no test coverage detected