(t *testing.T)
| 40 | } |
| 41 | |
| 42 | func TestEventsTracker_GetReference(t *testing.T) { |
| 43 | tracker := &EventsTracker{Reference: "test-ref"} |
| 44 | |
| 45 | ref := tracker.GetReference() |
| 46 | if ref != "test-ref" { |
| 47 | t.Errorf("expected 'test-ref', got %s", ref) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func TestEventsTracker_Reset(t *testing.T) { |
| 52 | tracker := &EventsTracker{ |
nothing calls this directly
no test coverage detected