Format implements the fmt.Formatter interface.
(s fmt.State, verb rune)
| 88 | |
| 89 | // Format implements the fmt.Formatter interface. |
| 90 | func (ef *fmter) Format(s fmt.State, verb rune) { _, _ = s.Write([]byte("hello")) } |
| 91 | |
| 92 | func TestFormat(t *testing.T) { |
| 93 | tt := testutils.T{t} |