(tt *testing.T)
| 4456 | } |
| 4457 | |
| 4458 | func TestBranchRules_GetPullRequest(tt *testing.T) { |
| 4459 | tt.Parallel() |
| 4460 | zeroValue := []*PullRequestBranchRule{} |
| 4461 | b := &BranchRules{PullRequest: zeroValue} |
| 4462 | b.GetPullRequest() |
| 4463 | b = &BranchRules{} |
| 4464 | b.GetPullRequest() |
| 4465 | b = nil |
| 4466 | b.GetPullRequest() |
| 4467 | } |
| 4468 | |
| 4469 | func TestBranchRules_GetRequiredDeployments(tt *testing.T) { |
| 4470 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…