Printf implements Logger interfaces used by some libraries.
(f string, a ...interface{})
| 397 | |
| 398 | // Printf implements Logger interfaces used by some libraries. |
| 399 | func (t *T) Printf(f string, a ...interface{}) { |
| 400 | t.Logf(f, a...) |
| 401 | } |
| 402 | |
| 403 | // Conn6 connects to the server listener at the specified named port using IPv6 loopback. |
| 404 | func (t *T) Conn6(portName string) Conn { |
no outgoing calls
no test coverage detected