mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-04 02:58:35 +00:00
22 lines
631 B
Go
22 lines
631 B
Go
// Code generated by pegomock. DO NOT EDIT.
|
|
package matchers
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/petergtz/pegomock"
|
|
models "github.com/runatlantis/atlantis/server/events/models"
|
|
)
|
|
|
|
func AnyModelsPullRequestOptions() models.PullRequestOptions {
|
|
pegomock.RegisterMatcher(pegomock.NewAnyMatcher(reflect.TypeOf((*(models.PullRequestOptions))(nil)).Elem()))
|
|
var nullValue models.PullRequestOptions
|
|
return nullValue
|
|
}
|
|
|
|
func EqModelsPullRequestOptions(value models.PullRequestOptions) models.PullRequestOptions {
|
|
pegomock.RegisterMatcher(&pegomock.EqMatcher{Value: value})
|
|
var nullValue models.PullRequestOptions
|
|
return nullValue
|
|
}
|