(v interface{}, title string)
| 103 | } |
| 104 | |
| 105 | func (p *Printer) PrintDataWithTitle(v interface{}, title string) { |
| 106 | if p.Format == FormatHuman { |
| 107 | p.Printf(" %s\n", strings.ToUpper(title)) |
| 108 | } |
| 109 | p.PrintData(v) |
| 110 | } |
| 111 | |
| 112 | func (p *Printer) Print(i ...interface{}) { |
| 113 | fmt.Fprint(p.humanOut(), i...) |
no test coverage detected