ExpectEqualValues expects the specified two are the same, it not strict about type
(actual any, extra any, explain ...any)
| 11 | |
| 12 | // ExpectEqualValues expects the specified two are the same, it not strict about type |
| 13 | func ExpectEqualValues(actual any, extra any, explain ...any) { |
| 14 | gomega.ExpectWithOffset(1, actual).To(gomega.BeEquivalentTo(extra), explain...) |
| 15 | } |
| 16 | |
| 17 | func ExpectEqualValuesWithOffset(offset int, actual any, extra any, explain ...any) { |
| 18 | gomega.ExpectWithOffset(1+offset, actual).To(gomega.BeEquivalentTo(extra), explain...) |
no outgoing calls
no test coverage detected
searching dependent graphs…