(tt *testing.T)
| 50603 | } |
| 50604 | |
| 50605 | func TestTimeline_GetEvent(tt *testing.T) { |
| 50606 | tt.Parallel() |
| 50607 | var zeroValue string |
| 50608 | t := &Timeline{Event: &zeroValue} |
| 50609 | t.GetEvent() |
| 50610 | t = &Timeline{} |
| 50611 | t.GetEvent() |
| 50612 | t = nil |
| 50613 | t.GetEvent() |
| 50614 | } |
| 50615 | |
| 50616 | func TestTimeline_GetID(tt *testing.T) { |
| 50617 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…