Exactly asserts that two objects are equal in value and type. a.Exactly(int32(123), int64(123))
(expected interface{}, actual interface{}, msgAndArgs ...interface{})
| 399 | // |
| 400 | // a.Exactly(int32(123), int64(123)) |
| 401 | func (a *Assertions) Exactly(expected interface{}, actual interface{}, msgAndArgs ...interface{}) { |
| 402 | if h, ok := a.t.(tHelper); ok { |
| 403 | h.Helper() |
| 404 | } |
| 405 | Exactly(a.t, expected, actual, msgAndArgs...) |
| 406 | } |
| 407 | |
| 408 | // Exactlyf asserts that two objects are equal in value and type. |
| 409 | // |