Files
atlantis/server/events/mocks/matchers/ptr_to_github_pullrequestevent.go
renovate[bot] 763f017169 fix(deps): update module github.com/google/go-github/v50 to v51 in go.mod (#3316)
* fix(deps): update module github.com/google/go-github/v50 to v51 in go.mod

* Update fixtures.go

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com>
2023-04-11 00:36:40 -05:00

34 lines
1.0 KiB
Go

// Code generated by pegomock. DO NOT EDIT.
package matchers
import (
"github.com/petergtz/pegomock"
"reflect"
github "github.com/google/go-github/v51/github"
)
func AnyPtrToGithubPullRequestEvent() *github.PullRequestEvent {
pegomock.RegisterMatcher(pegomock.NewAnyMatcher(reflect.TypeOf((*(*github.PullRequestEvent))(nil)).Elem()))
var nullValue *github.PullRequestEvent
return nullValue
}
func EqPtrToGithubPullRequestEvent(value *github.PullRequestEvent) *github.PullRequestEvent {
pegomock.RegisterMatcher(&pegomock.EqMatcher{Value: value})
var nullValue *github.PullRequestEvent
return nullValue
}
func NotEqPtrToGithubPullRequestEvent(value *github.PullRequestEvent) *github.PullRequestEvent {
pegomock.RegisterMatcher(&pegomock.NotEqMatcher{Value: value})
var nullValue *github.PullRequestEvent
return nullValue
}
func PtrToGithubPullRequestEventThat(matcher pegomock.ArgumentMatcher) *github.PullRequestEvent {
pegomock.RegisterMatcher(matcher)
var nullValue *github.PullRequestEvent
return nullValue
}