Printf writes a formatted unquoted string to the output buffer.
(format string, args ...interface{})
| 149 | |
| 150 | // Printf writes a formatted unquoted string to the output buffer. |
| 151 | func (a *Assertion) Printf(format string, args ...interface{}) *Assertion { |
| 152 | fmt.Fprintf(a.out, format, args...) |
| 153 | return a |
| 154 | } |
| 155 | |
| 156 | // Add appends a key value pair to the output buffer. |
| 157 | func (a *Assertion) Add(key string, values ...interface{}) *Assertion { |
no outgoing calls
no test coverage detected