ExpectEqual expects the specified two are the same, otherwise an exception raises
(actual interface{}, extra interface{}, explain ...interface{})
| 17 | |
| 18 | // ExpectEqual expects the specified two are the same, otherwise an exception raises |
| 19 | func ExpectEqual(actual interface{}, extra interface{}, explain ...interface{}) { |
| 20 | gomega.ExpectWithOffset(1, actual).To(gomega.Equal(extra), explain...) |
| 21 | } |
| 22 | |
| 23 | // ExpectNotEqual expects the specified two are not the same, otherwise an exception raises |
| 24 | func ExpectNotEqual(actual interface{}, extra interface{}, explain ...interface{}) { |
no test coverage detected