Phase 1: Add SetScreenSize API to IConsoleDriver and implementations

Co-authored-by: tig <585482+tig@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-27 03:29:15 +00:00
parent 3d701152a3
commit 21c0335018
7 changed files with 109 additions and 13 deletions

View File

@@ -145,6 +145,9 @@ internal class MockConsoleDriver : IConsoleDriver
/// <inheritdoc />
public bool SetCursorVisibility (CursorVisibility visibility) { throw new NotImplementedException (); }
/// <inheritdoc />
public void SetScreenSize (int width, int height) { throw new NotImplementedException ("SetScreenSize is only supported by FakeDriver for testing purposes."); }
/// <inheritdoc />
public event EventHandler<SizeChangedEventArgs>? SizeChanged;