MCPcopy Index your code
hub / github.com/Shopify/go-lua / expectEqual

Function expectEqual

parser_test.go:88–92  ·  view source on GitHub ↗
(t *testing.T, x, y interface{}, m string)

Source from the content-addressed store, hash-verified

86}
87
88func expectEqual(t *testing.T, x, y interface{}, m string) {
89 if x != y {
90 t.Errorf("%s doesn't match: %v, %v\n", m, x, y)
91 }
92}
93
94func expectDeepEqual(t *testing.T, x, y interface{}, m string) bool {
95 if reflect.DeepEqual(x, y) {

Callers 2

compareClosuresFunction · 0.85
comparePrototypesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected