For is shorthand for assert.To(t).For(msg, args...).
(t interface{}, msg string, args ...interface{})
| 60 | |
| 61 | // For is shorthand for assert.To(t).For(msg, args...). |
| 62 | func For(t interface{}, msg string, args ...interface{}) *Assertion { |
| 63 | return To(t).For(msg, args...) |
| 64 | } |
| 65 | |
| 66 | // For starts a new assertion with the supplied title. |
| 67 | func (ctx Manager) For(msg string, args ...interface{}) *Assertion { |