12345678910111213141516171819202122232425262728293031323334353637 |
- namespace Terminal.Gui;
- internal class FakeMainLoop : IMainLoopDriver
- {
- public Action<ConsoleKeyInfo> MockKeyPressed;
- public FakeMainLoop (ConsoleDriver consoleDriver = null)
- {
- // No implementation needed for FakeMainLoop
- }
- public void Setup (MainLoop mainLoop)
- {
- // No implementation needed for FakeMainLoop
- }
- public void Wakeup ()
- {
- // No implementation needed for FakeMainLoop
- }
- public bool EventsPending ()
- {
- // Always return true for FakeMainLoop
- return true;
- }
- public void Iteration ()
- {
- if (FakeConsole.MockKeyPresses.Count > 0)
- {
- MockKeyPressed?.Invoke (FakeConsole.MockKeyPresses.Pop ());
- }
- }
- public void TearDown () { }
- }
|