(t *testing.T)
| 52 | } |
| 53 | |
| 54 | func TestAuthAborted(t *testing.T) { |
| 55 | tracker := NewFlowTracker() |
| 56 | tracker.SetStep(StepAppSelect) |
| 57 | |
| 58 | event := AuthAborted(FlowLogin, tracker) |
| 59 | assert.Equal(t, EventAuthAborted, event.Name) |
| 60 | assert.Equal(t, StepAppSelect, event.Properties["step"]) |
| 61 | } |
| 62 | |
| 63 | func TestAuthFailed(t *testing.T) { |
| 64 | tracker := NewFlowTracker() |
nothing calls this directly
no test coverage detected