(t *testing.T)
| 121 | } |
| 122 | |
| 123 | func TestFlowTracker_TracksStepAndDuration(t *testing.T) { |
| 124 | tracker := NewFlowTracker() |
| 125 | tracker.SetStep(StepPlan) |
| 126 | assert.Equal(t, StepPlan, tracker.Step()) |
| 127 | assert.GreaterOrEqual(t, tracker.DurationMS(), int64(0)) |
| 128 | } |
nothing calls this directly
no test coverage detected