(tt *testing.T)
| 36772 | } |
| 36773 | |
| 36774 | func TestPullRequest_GetMerged(tt *testing.T) { |
| 36775 | tt.Parallel() |
| 36776 | var zeroValue bool |
| 36777 | p := &PullRequest{Merged: &zeroValue} |
| 36778 | p.GetMerged() |
| 36779 | p = &PullRequest{} |
| 36780 | p.GetMerged() |
| 36781 | p = nil |
| 36782 | p.GetMerged() |
| 36783 | } |
| 36784 | |
| 36785 | func TestPullRequest_GetMergedAt(tt *testing.T) { |
| 36786 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…