(tt *testing.T)
| 52328 | } |
| 52329 | |
| 52330 | func TestUser_GetEmail(tt *testing.T) { |
| 52331 | tt.Parallel() |
| 52332 | var zeroValue string |
| 52333 | u := &User{Email: &zeroValue} |
| 52334 | u.GetEmail() |
| 52335 | u = &User{} |
| 52336 | u.GetEmail() |
| 52337 | u = nil |
| 52338 | u.GetEmail() |
| 52339 | } |
| 52340 | |
| 52341 | func TestUser_GetEventsURL(tt *testing.T) { |
| 52342 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…