implement missing mock methods
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
David 2025-02-03 22:41:59 -05:00
parent ae0eb5f001
commit 3d4d10f11c

View File

@ -48,7 +48,7 @@ func (m *MockScreen) Resume() error {
func (m *MockScreen) SetStyle(style tcell.Style) {}
func (m *MockScreen) SetCursorStyle(style tcell.CursorStyle) {}
func (m *MockScreen) SetCursorStyle(style tcell.CursorStyle, colors ...tcell.Color) {}
func (m *MockScreen) ShowCursor(x int, y int) {}
@ -126,6 +126,12 @@ func (m *MockScreen) Beep() error {
return nil
}
func (m *MockScreen) SetTitle(string) {}
func (m *MockScreen) GetClipboard() {}
func (m *MockScreen) SetClipboard([]byte) {}
func (m *MockScreen) LockRegion(x, y, width, height int, lock bool) {}
func (m *MockScreen) Tty() (tcell.Tty, bool) {