Exactlyf asserts that two objects are equal in value and type. a.Exactlyf(int32(123), int64(123), "error message %s", "formatted")
(expected interface{}, actual interface{}, msg string, args ...interface{})
| 394 | // |
| 395 | // a.Exactlyf(int32(123), int64(123), "error message %s", "formatted") |
| 396 | func (a *Assertions) Exactlyf(expected interface{}, actual interface{}, msg string, args ...interface{}) bool { |
| 397 | if h, ok := a.t.(tHelper); ok { |
| 398 | h.Helper() |
| 399 | } |
| 400 | return Exactlyf(a.t, expected, actual, msg, args...) |
| 401 | } |
| 402 | |
| 403 | // Fail reports a failure through |
| 404 | func (a *Assertions) Fail(failureMessage string, msgAndArgs ...interface{}) bool { |