open-consul/proto/prototest/testing.go

19 lines
392 B
Go
Raw Normal View History

2022-03-28 17:56:44 +00:00
package prototest
import (
"testing"
"github.com/golang/protobuf/proto"
2022-03-28 17:56:44 +00:00
"github.com/google/go-cmp/cmp"
)
func AssertDeepEqual(t *testing.T, x, y interface{}, opts ...cmp.Option) {
t.Helper()
opts = append(opts, cmp.Comparer(proto.Equal))
2022-03-28 17:56:44 +00:00
if diff := cmp.Diff(x, y, opts...); diff != "" {
t.Fatalf("assertion failed: values are not equal\n--- expected\n+++ actual\n%v", diff)
}
}