MCPcopy
hub / github.com/fatedier/frp / ExpectEqualValues

Function ExpectEqualValues

test/e2e/framework/expect.go:13–15  ·  view source on GitHub ↗

ExpectEqualValues expects the specified two are the same, it not strict about type

(actual any, extra any, explain ...any)

Source from the content-addressed store, hash-verified

11
12// ExpectEqualValues expects the specified two are the same, it not strict about type
13func ExpectEqualValues(actual any, extra any, explain ...any) {
14 gomega.ExpectWithOffset(1, actual).To(gomega.BeEquivalentTo(extra), explain...)
15}
16
17func ExpectEqualValuesWithOffset(offset int, actual any, extra any, explain ...any) {
18 gomega.ExpectWithOffset(1+offset, actual).To(gomega.BeEquivalentTo(extra), explain...)

Callers 6

real_ip.goFile · 0.92
http.goFile · 0.92
tcpmux.goFile · 0.92
real_ip.goFile · 0.92
http.goFile · 0.92
tcpmux.goFile · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…