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