Fixes #4298 - Updates test namespaces (#4299)

* Refactored test namespaces.
Moved some tests that were in wrong project.
Code cleanup

* Parrallel -> Parallel
This commit is contained in:
Tig
2025-10-20 14:14:38 -06:00
committed by GitHub
parent 041e9de70e
commit fdeaa8331b
280 changed files with 328 additions and 323 deletions

View File

@@ -2,7 +2,7 @@ using System.Diagnostics;
// Alias Console to MockConsole so we don't accidentally use Console
namespace Terminal.Gui.ApplicationTests;
namespace UnitTests.ApplicationTests;
/// <summary>Tests MainLoop using the FakeMainLoop.</summary>
public class MainLoopTests
@@ -575,7 +575,7 @@ public class MainLoopTests
Assert.Empty (mainloop.TimedEvents.Timeouts);
Assert.NotNull (
new App.Timeout { Span = new (), Callback = () => true }
new Terminal.Gui.App.Timeout { Span = new (), Callback = () => true }
);
}