mirror of
https://github.com/octoleo/restic.git
synced 2024-11-27 15:26:37 +00:00
23 lines
398 B
Go
23 lines
398 B
Go
|
package ui
|
||
|
|
||
|
type MockTerminal struct {
|
||
|
Output []string
|
||
|
Errors []string
|
||
|
}
|
||
|
|
||
|
func (m *MockTerminal) Print(line string) {
|
||
|
m.Output = append(m.Output, line)
|
||
|
}
|
||
|
|
||
|
func (m *MockTerminal) Error(line string) {
|
||
|
m.Errors = append(m.Errors, line)
|
||
|
}
|
||
|
|
||
|
func (m *MockTerminal) SetStatus(lines []string) {
|
||
|
m.Output = append([]string{}, lines...)
|
||
|
}
|
||
|
|
||
|
func (m *MockTerminal) CanUpdateStatus() bool {
|
||
|
return true
|
||
|
}
|