Write will add a string to be written
(s string)
| 9 | |
| 10 | // Write will add a string to be written |
| 11 | func (w *ConditionalWrite) Write(s string) { |
| 12 | w.Queued = append(w.Queued, s) |
| 13 | } |
| 14 | |
| 15 | // DeleteLast will delete the last added write |
| 16 | func (w *ConditionalWrite) DeleteLast() { |
no outgoing calls
no test coverage detected