// Code generated by pegomock. DO NOT EDIT. package matchers import ( "reflect" "github.com/petergtz/pegomock" "github.com/runatlantis/atlantis/server/events/command" ) func AnySliceOfModelsProjectCommandContext() []command.ProjectContext { pegomock.RegisterMatcher(pegomock.NewAnyMatcher(reflect.TypeOf((*([]command.ProjectContext))(nil)).Elem())) var nullValue []command.ProjectContext return nullValue } func EqSliceOfModelsProjectCommandContext(value []command.ProjectContext) []command.ProjectContext { pegomock.RegisterMatcher(&pegomock.EqMatcher{Value: value}) var nullValue []command.ProjectContext return nullValue } func NotEqSliceOfModelsProjectCommandContext(value []command.ProjectContext) []command.ProjectContext { pegomock.RegisterMatcher(&pegomock.NotEqMatcher{Value: value}) var nullValue []command.ProjectContext return nullValue } func SliceOfModelsProjectCommandContextThat(matcher pegomock.ArgumentMatcher) []command.ProjectContext { pegomock.RegisterMatcher(matcher) var nullValue []command.ProjectContext return nullValue }