mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-03 20:38:46 +00:00
34 lines
1.0 KiB
Go
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/v49/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
|
|
}
|