matcher

package
v16.11.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 17, 2024 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Cmp

func Cmp(t *testing.T, expected interface{}, opts ...cmp.Option) gomock.Matcher

func DoMatch added in v16.1.0

func DoMatch[V any](m func(v V) bool) gomock.Matcher

DoMatch creates lambda matcher instance equipped with lambda function to detect if actual value matches some arbitrary criteria. Lambda matcher implements gomock customer matcher interface https://github.com/uber/mock/blob/5b455625bd2c8ffbcc0de6a0873f864ba3820904/gomock/matchers.go#L25. Sample of usage:

mock.EXPECT().Foo(gomock.All(

   DoMatch(func(v Bar) bool {
	      v.Greeting == "Hello world"
   }),

))

func ErrorEq

func ErrorEq(expectedError string) gomock.Matcher

func ErrorIs

func ErrorIs(expectedError error) gomock.Matcher

func GRPCOutgoingCtx added in v16.10.0

func GRPCOutgoingCtx(kv map[string]string) gomock.Matcher

GRPCOutgoingCtx returns a matcher for context.Context that must contain gRPC outgoing metadata with certain key-value pairs.

func ProtoEq

func ProtoEq(t *testing.T, msg interface{}, opts ...cmp.Option) gomock.Matcher

ProtoEq is a better gomock.Eq() that works correctly for protobuf messages. Use this matcher when checking equality of structs that: - are v1 protobuf messages (i.e. implement "github.com/golang/protobuf/proto".Message). - are v2 protobuf messages (i.e. implement "google.golang.org/protobuf/proto".Message). - have fields of the above types. See https://blog.golang.org/protobuf-apiv2 for v1 vs v2 details.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL