()
| 152 | } |
| 153 | |
| 154 | func (ui *terminalUI) Ok() { |
| 155 | ui.Say(SuccessColor(T("OK"))) |
| 156 | } |
| 157 | |
| 158 | func (ui *terminalUI) Failed(message string, args ...interface{}) { |
| 159 | message = fmt.Sprintf(message, args...) |
nothing calls this directly
no test coverage detected