Files
atlantis/server/events/mocks/matchers/ptr_to_github_pullrequestevent.go
2019-08-26 18:38:22 +02:00

21 lines
616 B
Go

// Code generated by pegomock. DO NOT EDIT.
package matchers
import (
github "github.com/google/go-github/v28/github"
"github.com/petergtz/pegomock"
"reflect"
)
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
}