(tt *testing.T)
| 24085 | } |
| 24086 | |
| 24087 | func TestIssue_GetBody(tt *testing.T) { |
| 24088 | tt.Parallel() |
| 24089 | var zeroValue string |
| 24090 | i := &Issue{Body: &zeroValue} |
| 24091 | i.GetBody() |
| 24092 | i = &Issue{} |
| 24093 | i.GetBody() |
| 24094 | i = nil |
| 24095 | i.GetBody() |
| 24096 | } |
| 24097 | |
| 24098 | func TestIssue_GetClosedAt(tt *testing.T) { |
| 24099 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…