Exactly asserts that two objects are equal in value and type. a.Exactly(int32(123), int64(123))
(expected interface{}, actual interface{}, msgAndArgs ...interface{})
| 386 | // |
| 387 | // a.Exactly(int32(123), int64(123)) |
| 388 | func (a *Assertions) Exactly(expected interface{}, actual interface{}, msgAndArgs ...interface{}) { |
| 389 | if h, ok := a.t.(tHelper); ok { |
| 390 | h.Helper() |
| 391 | } |
| 392 | Exactly(a.t, expected, actual, msgAndArgs...) |
| 393 | } |
| 394 | |
| 395 | // Exactlyf asserts that two objects are equal in value and type. |
| 396 | // |