diff --git a/Tests/UnitTests/Application/Application.NavigationTests.cs b/Tests/UnitTests/Application/Application.NavigationTests.cs index 783eedb2e..cc61f8643 100644 --- a/Tests/UnitTests/Application/Application.NavigationTests.cs +++ b/Tests/UnitTests/Application/Application.NavigationTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ApplicationTests.NavigationTests; +namespace UnitTests.ApplicationTests.NavigationTests; public class ApplicationNavigationTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Application/ApplicationImplTests.cs b/Tests/UnitTests/Application/ApplicationImplTests.cs index 886beabcf..7b9d81f53 100644 --- a/Tests/UnitTests/Application/ApplicationImplTests.cs +++ b/Tests/UnitTests/Application/ApplicationImplTests.cs @@ -5,7 +5,7 @@ using Microsoft.Extensions.Logging; using Moq; using TerminalGuiFluentTesting; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class ApplicationImplTests { public ApplicationImplTests () diff --git a/Tests/UnitTests/Application/ApplicationPopoverTests.cs b/Tests/UnitTests/Application/ApplicationPopoverTests.cs index 798899cf4..53a0e4651 100644 --- a/Tests/UnitTests/Application/ApplicationPopoverTests.cs +++ b/Tests/UnitTests/Application/ApplicationPopoverTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class ApplicationPopoverTests { diff --git a/Tests/UnitTests/Application/ApplicationScreenTests.cs b/Tests/UnitTests/Application/ApplicationScreenTests.cs index 675b683ad..4fb8b03d9 100644 --- a/Tests/UnitTests/Application/ApplicationScreenTests.cs +++ b/Tests/UnitTests/Application/ApplicationScreenTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class ApplicationScreenTests { diff --git a/Tests/UnitTests/Application/ApplicationTests.cs b/Tests/UnitTests/Application/ApplicationTests.cs index cd6d262a9..62ac6761a 100644 --- a/Tests/UnitTests/Application/ApplicationTests.cs +++ b/Tests/UnitTests/Application/ApplicationTests.cs @@ -8,7 +8,7 @@ using static Terminal.Gui.Configuration.ConfigurationManager; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class ApplicationTests { diff --git a/Tests/UnitTests/Application/CursorTests.cs b/Tests/UnitTests/Application/CursorTests.cs index b2f0c73cb..d85d5324b 100644 --- a/Tests/UnitTests/Application/CursorTests.cs +++ b/Tests/UnitTests/Application/CursorTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class CursorTests { diff --git a/Tests/UnitTests/Application/KeyboardTests.cs b/Tests/UnitTests/Application/KeyboardTests.cs index 9872abc27..86fc81d83 100644 --- a/Tests/UnitTests/Application/KeyboardTests.cs +++ b/Tests/UnitTests/Application/KeyboardTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; /// /// Application tests for keyboard support. diff --git a/Tests/UnitTests/Application/MainLoopCoordinatorTests.cs b/Tests/UnitTests/Application/MainLoopCoordinatorTests.cs index fd344d7fe..43242efb0 100644 --- a/Tests/UnitTests/Application/MainLoopCoordinatorTests.cs +++ b/Tests/UnitTests/Application/MainLoopCoordinatorTests.cs @@ -2,7 +2,7 @@ using Microsoft.Extensions.Logging; using Moq; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class MainLoopCoordinatorTests { [Fact] diff --git a/Tests/UnitTests/Application/MainLoopTTests.cs b/Tests/UnitTests/Application/MainLoopTTests.cs index 1adc96ba0..5829179c6 100644 --- a/Tests/UnitTests/Application/MainLoopTTests.cs +++ b/Tests/UnitTests/Application/MainLoopTTests.cs @@ -3,7 +3,7 @@ using System.Collections.Concurrent; using System.Collections.Generic; using Moq; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class MainLoopTTests { //[Fact] diff --git a/Tests/UnitTests/Application/MainLoopTests.cs b/Tests/UnitTests/Application/MainLoopTests.cs index 06f1475d5..f2caa1069 100644 --- a/Tests/UnitTests/Application/MainLoopTests.cs +++ b/Tests/UnitTests/Application/MainLoopTests.cs @@ -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; /// Tests MainLoop using the FakeMainLoop. 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 } ); } diff --git a/Tests/UnitTests/Application/Mouse/ApplicationMouseEnterLeaveTests.cs b/Tests/UnitTests/Application/Mouse/ApplicationMouseEnterLeaveTests.cs index ea2919d0d..cbe800a98 100644 --- a/Tests/UnitTests/Application/Mouse/ApplicationMouseEnterLeaveTests.cs +++ b/Tests/UnitTests/Application/Mouse/ApplicationMouseEnterLeaveTests.cs @@ -1,6 +1,6 @@ using System.ComponentModel; -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests.ViewMouseTests; [Trait ("Category", "Input")] public class ApplicationMouseEnterLeaveTests diff --git a/Tests/UnitTests/Application/Mouse/ApplicationMouseTests.cs b/Tests/UnitTests/Application/Mouse/ApplicationMouseTests.cs index 6851cb638..f40e617a4 100644 --- a/Tests/UnitTests/Application/Mouse/ApplicationMouseTests.cs +++ b/Tests/UnitTests/Application/Mouse/ApplicationMouseTests.cs @@ -3,7 +3,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; [Trait ("Category", "Input")] public class ApplicationMouseTests diff --git a/Tests/UnitTests/Application/RunStateTests.cs b/Tests/UnitTests/Application/RunStateTests.cs index 1579d8ef4..e00860020 100644 --- a/Tests/UnitTests/Application/RunStateTests.cs +++ b/Tests/UnitTests/Application/RunStateTests.cs @@ -4,7 +4,7 @@ using System.Numerics; using Terminal.Gui.Drivers; using UnitTests; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; /// These tests focus on Application.RunState and the various ways it can be changed. public class RunStateTests diff --git a/Tests/UnitTests/Application/SynchronizatonContextTests.cs b/Tests/UnitTests/Application/SynchronizatonContextTests.cs index e049dcb03..c2b30bd70 100644 --- a/Tests/UnitTests/Application/SynchronizatonContextTests.cs +++ b/Tests/UnitTests/Application/SynchronizatonContextTests.cs @@ -2,7 +2,7 @@ using UnitTests; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests.ApplicationTests; public class SyncrhonizationContextTests { diff --git a/Tests/UnitTests/Clipboard/ClipboardTests.cs b/Tests/UnitTests/Clipboard/ClipboardTests.cs index e2c0ac11f..da1ba2d0c 100644 --- a/Tests/UnitTests/Clipboard/ClipboardTests.cs +++ b/Tests/UnitTests/Clipboard/ClipboardTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ClipboardTests; +namespace UnitTests.ClipboardTests; #if RUN_CLIPBOARD_UNIT_TESTS public class ClipboardTests diff --git a/Tests/UnitTests/Configuration/AppScopeTests.cs b/Tests/UnitTests/Configuration/AppScopeTests.cs index 22cd35ed6..df4088660 100644 --- a/Tests/UnitTests/Configuration/AppScopeTests.cs +++ b/Tests/UnitTests/Configuration/AppScopeTests.cs @@ -3,7 +3,7 @@ using System.Text.Json; using UnitTests; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class AppSettingsScopeTests { diff --git a/Tests/UnitTests/Configuration/ConfigPropertyTests.cs b/Tests/UnitTests/Configuration/ConfigPropertyTests.cs index b742bc984..b516291da 100644 --- a/Tests/UnitTests/Configuration/ConfigPropertyTests.cs +++ b/Tests/UnitTests/Configuration/ConfigPropertyTests.cs @@ -3,7 +3,7 @@ using System.Collections.Concurrent; using System.Reflection; using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class ConfigPropertyTests { diff --git a/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs b/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs index 78d78fcc5..e1a83b4a5 100644 --- a/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs +++ b/Tests/UnitTests/Configuration/ConfigurationMangerTests.cs @@ -10,7 +10,7 @@ using File = System.IO.File; #pragma warning disable IDE1006 -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class ConfigurationManagerTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Configuration/GlyphTests.cs b/Tests/UnitTests/Configuration/GlyphTests.cs index 9154f68b4..611209379 100644 --- a/Tests/UnitTests/Configuration/GlyphTests.cs +++ b/Tests/UnitTests/Configuration/GlyphTests.cs @@ -3,7 +3,7 @@ using System.Text; using System.Text.Json; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class GlyphTests { diff --git a/Tests/UnitTests/Configuration/KeyJsonConverterTests.cs b/Tests/UnitTests/Configuration/KeyJsonConverterTests.cs index e3191ced1..8f3e6f973 100644 --- a/Tests/UnitTests/Configuration/KeyJsonConverterTests.cs +++ b/Tests/UnitTests/Configuration/KeyJsonConverterTests.cs @@ -3,7 +3,7 @@ using System.Text.Encodings.Web; using System.Text.Json; using System.Text.Unicode; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class KeyJsonConverterTests { diff --git a/Tests/UnitTests/Configuration/MemorySizeEstimator.cs b/Tests/UnitTests/Configuration/MemorySizeEstimator.cs index bbde40a72..7562650d2 100644 --- a/Tests/UnitTests/Configuration/MemorySizeEstimator.cs +++ b/Tests/UnitTests/Configuration/MemorySizeEstimator.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; using System; using System.Collections; diff --git a/Tests/UnitTests/Configuration/SchemeManagerTests.cs b/Tests/UnitTests/Configuration/SchemeManagerTests.cs index 65d924be0..b44d3ff8e 100644 --- a/Tests/UnitTests/Configuration/SchemeManagerTests.cs +++ b/Tests/UnitTests/Configuration/SchemeManagerTests.cs @@ -5,7 +5,7 @@ using System.Collections.Immutable; using System.Text.Json; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class SchemeManagerTests { @@ -956,4 +956,43 @@ public class SchemeManagerTests Disable (true); } + + + [Fact] + public void AddScheme_Adds_And_Updates_Scheme () + { + // Arrange + var scheme = new Scheme (new Attribute (Color.Red, Color.Green)); + string schemeName = "CustomScheme"; + + // Act + SchemeManager.AddScheme (schemeName, scheme); + + // Assert + Assert.Equal (scheme, SchemeManager.GetScheme (schemeName)); + + // Update the scheme + var updatedScheme = new Scheme (new Attribute (Color.Blue, Color.Yellow)); + SchemeManager.AddScheme (schemeName, updatedScheme); + + Assert.Equal (updatedScheme, SchemeManager.GetScheme (schemeName)); + + // Cleanup + SchemeManager.RemoveScheme (schemeName); + } + + [Fact] + public void RemoveScheme_Removes_Custom_Scheme () + { + var scheme = new Scheme (new Attribute (Color.Red, Color.Green)); + string schemeName = "RemovableScheme"; + SchemeManager.AddScheme (schemeName, scheme); + + Assert.Equal (scheme, SchemeManager.GetScheme (schemeName)); + + SchemeManager.RemoveScheme (schemeName); + + Assert.Throws (() => SchemeManager.GetScheme (schemeName)); + } + } diff --git a/Tests/UnitTests/Configuration/SettingsScopeTests.cs b/Tests/UnitTests/Configuration/SettingsScopeTests.cs index 2669553c4..27e6533f3 100644 --- a/Tests/UnitTests/Configuration/SettingsScopeTests.cs +++ b/Tests/UnitTests/Configuration/SettingsScopeTests.cs @@ -5,7 +5,7 @@ using System.Collections.Immutable; using System.Text.Json; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class SettingsScopeTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ThemeManagerTests.cs b/Tests/UnitTests/Configuration/ThemeManagerTests.cs similarity index 99% rename from Tests/UnitTestsParallelizable/Configuration/ThemeManagerTests.cs rename to Tests/UnitTests/Configuration/ThemeManagerTests.cs index c078617eb..b1ee2f4e2 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ThemeManagerTests.cs +++ b/Tests/UnitTests/Configuration/ThemeManagerTests.cs @@ -2,10 +2,11 @@ using System.Collections.Concurrent; using System.Diagnostics.Metrics; using System.Text; +using UnitTests.ConfigurationTests; using Xunit.Abstractions; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class ThemeManagerTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Configuration/ThemeScopeTests.cs b/Tests/UnitTests/Configuration/ThemeScopeTests.cs index 4e5fda1d0..25c881d64 100644 --- a/Tests/UnitTests/Configuration/ThemeScopeTests.cs +++ b/Tests/UnitTests/Configuration/ThemeScopeTests.cs @@ -5,7 +5,7 @@ using System.Collections.Immutable; using System.Text.Json; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; public class ThemeScopeTests { diff --git a/Tests/UnitTests/Configuration/ThemeTests.cs b/Tests/UnitTests/Configuration/ThemeTests.cs index 5b1769f65..fda4a8713 100644 --- a/Tests/UnitTests/Configuration/ThemeTests.cs +++ b/Tests/UnitTests/Configuration/ThemeTests.cs @@ -1,7 +1,7 @@ using System.Text.Json; using static Terminal.Gui.Configuration.ConfigurationManager; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests.ConfigurationTests; /// /// Tests Settings["Theme"] and ThemeManager.Theme diff --git a/Tests/UnitTests/ConsoleDrivers/AddRuneTests.cs b/Tests/UnitTests/ConsoleDrivers/AddRuneTests.cs index 051e40c08..18523a898 100644 --- a/Tests/UnitTests/ConsoleDrivers/AddRuneTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/AddRuneTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class AddRuneTests { diff --git a/Tests/UnitTests/ConsoleDrivers/AnsiKeyboardParserTests.cs b/Tests/UnitTests/ConsoleDrivers/AnsiKeyboardParserTests.cs index 23a7ba9fc..6d498ed4d 100644 --- a/Tests/UnitTests/ConsoleDrivers/AnsiKeyboardParserTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/AnsiKeyboardParserTests.cs @@ -1,5 +1,5 @@ #nullable enable -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class AnsiKeyboardParserTests { diff --git a/Tests/UnitTests/ConsoleDrivers/AnsiMouseParserTests.cs b/Tests/UnitTests/ConsoleDrivers/AnsiMouseParserTests.cs index cad935223..502bba4a4 100644 --- a/Tests/UnitTests/ConsoleDrivers/AnsiMouseParserTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/AnsiMouseParserTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class AnsiMouseParserTests { diff --git a/Tests/UnitTests/ConsoleDrivers/AnsiRequestSchedulerTests.cs b/Tests/UnitTests/ConsoleDrivers/AnsiRequestSchedulerTests.cs index 9ee364b85..caa264e3d 100644 --- a/Tests/UnitTests/ConsoleDrivers/AnsiRequestSchedulerTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/AnsiRequestSchedulerTests.cs @@ -1,6 +1,6 @@ using Moq; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class AnsiRequestSchedulerTests diff --git a/Tests/UnitTests/ConsoleDrivers/ClipRegionTests.cs b/Tests/UnitTests/ConsoleDrivers/ClipRegionTests.cs index 7aa81ecec..3cc5433c5 100644 --- a/Tests/UnitTests/ConsoleDrivers/ClipRegionTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/ClipRegionTests.cs @@ -3,7 +3,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class ClipRegionTests { diff --git a/Tests/UnitTests/ConsoleDrivers/ConsoleDriverTests.cs b/Tests/UnitTests/ConsoleDrivers/ConsoleDriverTests.cs index d7ec1cc28..069cd12ef 100644 --- a/Tests/UnitTests/ConsoleDrivers/ConsoleDriverTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/ConsoleDriverTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console using Console = Terminal.Gui.Drivers.FakeConsole; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class ConsoleDriverTests { diff --git a/Tests/UnitTests/ConsoleDrivers/ConsoleInputTests.cs b/Tests/UnitTests/ConsoleDrivers/ConsoleInputTests.cs index 5d746dbc7..8a6d61857 100644 --- a/Tests/UnitTests/ConsoleDrivers/ConsoleInputTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/ConsoleInputTests.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class ConsoleInputTests { class FakeInput : ConsoleInput diff --git a/Tests/UnitTests/ConsoleDrivers/ConsoleKeyMappingTests.cs b/Tests/UnitTests/ConsoleDrivers/ConsoleKeyMappingTests.cs index 1c0351a6b..ba3d2e9e9 100644 --- a/Tests/UnitTests/ConsoleDrivers/ConsoleKeyMappingTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/ConsoleKeyMappingTests.cs @@ -1,5 +1,5 @@ -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class ConsoleKeyMappingTests { diff --git a/Tests/UnitTests/ConsoleDrivers/ConsoleScrolllingTests.cs b/Tests/UnitTests/ConsoleDrivers/ConsoleScrolllingTests.cs index cf93dbbba..6223a8f73 100644 --- a/Tests/UnitTests/ConsoleDrivers/ConsoleScrolllingTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/ConsoleScrolllingTests.cs @@ -3,7 +3,7 @@ // Alias Console to MockConsole so we don't accidentally use Console using Console = Terminal.Gui.Drivers.FakeConsole; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class ConsoleScrollingTests { private readonly ITestOutputHelper output; diff --git a/Tests/UnitTests/ConsoleDrivers/ContentsTests.cs b/Tests/UnitTests/ConsoleDrivers/ContentsTests.cs index ac20f7a61..5863e32f9 100644 --- a/Tests/UnitTests/ConsoleDrivers/ContentsTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/ContentsTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class ContentsTests { diff --git a/Tests/UnitTests/ConsoleDrivers/DriverColorTests.cs b/Tests/UnitTests/ConsoleDrivers/DriverColorTests.cs index 0b6c59a33..8ac4a46c4 100644 --- a/Tests/UnitTests/ConsoleDrivers/DriverColorTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/DriverColorTests.cs @@ -2,7 +2,7 @@ using Console = Terminal.Gui.Drivers.FakeConsole; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class DriverColorTests { diff --git a/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs b/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs index 2aa09a210..4314492d4 100644 --- a/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs @@ -3,7 +3,7 @@ using Xunit; using Xunit.Abstractions; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; /// /// Tests for the FakeDriver to ensure it works properly with the modern component factory architecture. diff --git a/Tests/UnitTests/ConsoleDrivers/KeyCodeTests.cs b/Tests/UnitTests/ConsoleDrivers/KeyCodeTests.cs index 45177b7a0..9262261c1 100644 --- a/Tests/UnitTests/ConsoleDrivers/KeyCodeTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/KeyCodeTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.InputTests; +namespace UnitTests.InputTests; public class KeyCodeTests { diff --git a/Tests/UnitTests/ConsoleDrivers/MouseInterpreterTests.cs b/Tests/UnitTests/ConsoleDrivers/MouseInterpreterTests.cs index afb09a0d6..bf5a08c01 100644 --- a/Tests/UnitTests/ConsoleDrivers/MouseInterpreterTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/MouseInterpreterTests.cs @@ -1,6 +1,6 @@ using Moq; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class MouseInterpreterTests { [Theory] diff --git a/Tests/UnitTests/ConsoleDrivers/NetInputProcessorTests.cs b/Tests/UnitTests/ConsoleDrivers/NetInputProcessorTests.cs index 1d60bea86..91fbaefb6 100644 --- a/Tests/UnitTests/ConsoleDrivers/NetInputProcessorTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/NetInputProcessorTests.cs @@ -1,7 +1,7 @@ using System.Collections.Concurrent; using System.Text; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class NetInputProcessorTests { public static IEnumerable GetConsoleKeyInfoToKeyTestCases_Rune () diff --git a/Tests/UnitTests/ConsoleDrivers/WindowSizeMonitorTests.cs b/Tests/UnitTests/ConsoleDrivers/WindowSizeMonitorTests.cs index 75ac3c93c..1301087da 100644 --- a/Tests/UnitTests/ConsoleDrivers/WindowSizeMonitorTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/WindowSizeMonitorTests.cs @@ -1,6 +1,6 @@ using Moq; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class WindowSizeMonitorTests { public WindowSizeMonitorTests () diff --git a/Tests/UnitTests/ConsoleDrivers/WindowsInputProcessorTests.cs b/Tests/UnitTests/ConsoleDrivers/WindowsInputProcessorTests.cs index f62fc06bc..92b97843d 100644 --- a/Tests/UnitTests/ConsoleDrivers/WindowsInputProcessorTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/WindowsInputProcessorTests.cs @@ -5,7 +5,7 @@ using EventFlags = Terminal.Gui.Drivers.WindowsConsole.EventFlags; using ControlKeyState = Terminal.Gui.Drivers.WindowsConsole.ControlKeyState; using MouseEventRecord = Terminal.Gui.Drivers.WindowsConsole.MouseEventRecord; -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class WindowsInputProcessorTests { diff --git a/Tests/UnitTests/Dialogs/DialogTests.cs b/Tests/UnitTests/Dialogs/DialogTests.cs index 521634828..53256a427 100644 --- a/Tests/UnitTests/Dialogs/DialogTests.cs +++ b/Tests/UnitTests/Dialogs/DialogTests.cs @@ -3,7 +3,7 @@ using UnitTests; using Xunit.Abstractions; using static Terminal.Gui.App.Application; -namespace Terminal.Gui.DialogTests; +namespace UnitTests.DialogTests; public class DialogTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Dialogs/MessageBoxTests.cs b/Tests/UnitTests/Dialogs/MessageBoxTests.cs index 5b6873978..a3033c998 100644 --- a/Tests/UnitTests/Dialogs/MessageBoxTests.cs +++ b/Tests/UnitTests/Dialogs/MessageBoxTests.cs @@ -3,7 +3,7 @@ using UICatalog; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.DialogTests; +namespace UnitTests.DialogTests; public class MessageBoxTests { diff --git a/Tests/UnitTests/Dialogs/WizardTests.cs b/Tests/UnitTests/Dialogs/WizardTests.cs index 1fba0cb30..92f9a94ad 100644 --- a/Tests/UnitTests/Dialogs/WizardTests.cs +++ b/Tests/UnitTests/Dialogs/WizardTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.DialogTests; +namespace UnitTests.DialogTests; public class WizardTests () { diff --git a/Tests/UnitTests/Drawing/LineCanvasTests.cs b/Tests/UnitTests/Drawing/LineCanvasTests.cs index c8304b823..46f90658d 100644 --- a/Tests/UnitTests/Drawing/LineCanvasTests.cs +++ b/Tests/UnitTests/Drawing/LineCanvasTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests.DrawingTests; public class LineCanvasTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Drawing/RulerTests.cs b/Tests/UnitTests/Drawing/RulerTests.cs index 49e6b1933..00874d523 100644 --- a/Tests/UnitTests/Drawing/RulerTests.cs +++ b/Tests/UnitTests/Drawing/RulerTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests.DrawingTests; public class RulerTests { diff --git a/Tests/UnitTests/Drawing/StraightLineExtensionsTests.cs b/Tests/UnitTests/Drawing/StraightLineExtensionsTests.cs index 67dc6d68c..0573fec7e 100644 --- a/Tests/UnitTests/Drawing/StraightLineExtensionsTests.cs +++ b/Tests/UnitTests/Drawing/StraightLineExtensionsTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests.DrawingTests; public class StraightLineExtensionsTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Drawing/ThicknessTests.cs b/Tests/UnitTests/Drawing/ThicknessTests.cs index 14ad67899..86bd32996 100644 --- a/Tests/UnitTests/Drawing/ThicknessTests.cs +++ b/Tests/UnitTests/Drawing/ThicknessTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests.DrawingTests; public class ThicknessTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/FileServices/FileDialogTests.cs b/Tests/UnitTests/FileServices/FileDialogTests.cs index 3aa783011..6a63d1fdf 100644 --- a/Tests/UnitTests/FileServices/FileDialogTests.cs +++ b/Tests/UnitTests/FileServices/FileDialogTests.cs @@ -3,7 +3,7 @@ using System.Runtime.InteropServices; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.FileServicesTests; +namespace UnitTests.FileServicesTests; public class FileDialogTests () { diff --git a/Tests/UnitTests/Input/EscSeqUtilsTests.cs b/Tests/UnitTests/Input/EscSeqUtilsTests.cs index 595a3d1d7..7a1731e1e 100644 --- a/Tests/UnitTests/Input/EscSeqUtilsTests.cs +++ b/Tests/UnitTests/Input/EscSeqUtilsTests.cs @@ -3,7 +3,7 @@ using UnitTests; // ReSharper disable HeuristicUnreachableCode -namespace Terminal.Gui.DriverTests; +namespace UnitTests.DriverTests; public class EscSeqUtilsTests { diff --git a/Tests/UnitTests/Input/Keyboard/KeyTests.cs b/Tests/UnitTests/Input/Keyboard/KeyTests.cs index a1161b0fd..15a4c8739 100644 --- a/Tests/UnitTests/Input/Keyboard/KeyTests.cs +++ b/Tests/UnitTests/Input/Keyboard/KeyTests.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Terminal.Gui.InputTests; +namespace UnitTests.InputTests; public class KeyTests { diff --git a/Tests/UnitTests/Text/AutocompleteTests.cs b/Tests/UnitTests/Text/AutocompleteTests.cs index 9b4b5fc47..deaf1d38f 100644 --- a/Tests/UnitTests/Text/AutocompleteTests.cs +++ b/Tests/UnitTests/Text/AutocompleteTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.TextTests; +namespace UnitTests.TextTests; public class AutocompleteTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Text/TextFormatterTests.cs b/Tests/UnitTests/Text/TextFormatterTests.cs index 9a5f7e9f7..1f1e7819c 100644 --- a/Tests/UnitTests/Text/TextFormatterTests.cs +++ b/Tests/UnitTests/Text/TextFormatterTests.cs @@ -5,7 +5,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.TextTests; +namespace UnitTests.TextTests; public class TextFormatterTests { diff --git a/Tests/UnitTests/View/Adornment/AdornmentSubViewTests.cs b/Tests/UnitTests/View/Adornment/AdornmentSubViewTests.cs index bd79d71d4..d1ac1cebe 100644 --- a/Tests/UnitTests/View/Adornment/AdornmentSubViewTests.cs +++ b/Tests/UnitTests/View/Adornment/AdornmentSubViewTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class AdornmentSubViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Adornment/AdornmentTests.cs b/Tests/UnitTests/View/Adornment/AdornmentTests.cs index e74d6df39..ae0439bef 100644 --- a/Tests/UnitTests/View/Adornment/AdornmentTests.cs +++ b/Tests/UnitTests/View/Adornment/AdornmentTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class AdornmentTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Adornment/BorderTests.cs b/Tests/UnitTests/View/Adornment/BorderTests.cs index eb722f2d9..efc03ed36 100644 --- a/Tests/UnitTests/View/Adornment/BorderTests.cs +++ b/Tests/UnitTests/View/Adornment/BorderTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class BorderTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Adornment/MarginTests.cs b/Tests/UnitTests/View/Adornment/MarginTests.cs index 31974525a..ff678a311 100644 --- a/Tests/UnitTests/View/Adornment/MarginTests.cs +++ b/Tests/UnitTests/View/Adornment/MarginTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class MarginTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Adornment/PaddingTests.cs b/Tests/UnitTests/View/Adornment/PaddingTests.cs index 37ac28c5a..d9a9a6141 100644 --- a/Tests/UnitTests/View/Adornment/PaddingTests.cs +++ b/Tests/UnitTests/View/Adornment/PaddingTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class PaddingTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Adornment/ShadowStyleTests.cs b/Tests/UnitTests/View/Adornment/ShadowStyleTests.cs index 2be8fe50d..c488a5737 100644 --- a/Tests/UnitTests/View/Adornment/ShadowStyleTests.cs +++ b/Tests/UnitTests/View/Adornment/ShadowStyleTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class ShadowStyleTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/DiagnosticsTests.cs b/Tests/UnitTests/View/DiagnosticsTests.cs index 96e23de31..258a0ab3b 100644 --- a/Tests/UnitTests/View/DiagnosticsTests.cs +++ b/Tests/UnitTests/View/DiagnosticsTests.cs @@ -1,7 +1,7 @@ #nullable enable using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; /// /// Tests static property and enum. diff --git a/Tests/UnitTests/View/Draw/AllViewsDrawTests.cs b/Tests/UnitTests/View/Draw/AllViewsDrawTests.cs index 99151fdc5..f9a45d5c9 100644 --- a/Tests/UnitTests/View/Draw/AllViewsDrawTests.cs +++ b/Tests/UnitTests/View/Draw/AllViewsDrawTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class AllViewsDrawTests (ITestOutputHelper output) : TestsAllViews { diff --git a/Tests/UnitTests/View/Draw/ClearViewportTests.cs b/Tests/UnitTests/View/Draw/ClearViewportTests.cs index b42399c02..24dac069b 100644 --- a/Tests/UnitTests/View/Draw/ClearViewportTests.cs +++ b/Tests/UnitTests/View/Draw/ClearViewportTests.cs @@ -3,7 +3,7 @@ using Moq; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "Output")] public class ClearViewportTests (ITestOutputHelper output) diff --git a/Tests/UnitTests/View/Draw/ClipTests.cs b/Tests/UnitTests/View/Draw/ClipTests.cs index 39c014407..05f62a4d0 100644 --- a/Tests/UnitTests/View/Draw/ClipTests.cs +++ b/Tests/UnitTests/View/Draw/ClipTests.cs @@ -3,7 +3,7 @@ using System.Text; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "Output")] public class ClipTests (ITestOutputHelper _output) diff --git a/Tests/UnitTests/View/Draw/DrawEventTests.cs b/Tests/UnitTests/View/Draw/DrawEventTests.cs index 4c7287cea..4b091d971 100644 --- a/Tests/UnitTests/View/Draw/DrawEventTests.cs +++ b/Tests/UnitTests/View/Draw/DrawEventTests.cs @@ -1,7 +1,7 @@ #nullable enable using UnitTests; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "Output")] public class DrawEventTests diff --git a/Tests/UnitTests/View/Draw/DrawTests.cs b/Tests/UnitTests/View/Draw/DrawTests.cs index d1ba01dd4..5c1843ce2 100644 --- a/Tests/UnitTests/View/Draw/DrawTests.cs +++ b/Tests/UnitTests/View/Draw/DrawTests.cs @@ -3,7 +3,7 @@ using System.Text; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "Output")] public class DrawTests (ITestOutputHelper output) diff --git a/Tests/UnitTests/View/Draw/NeedsDrawTests.cs b/Tests/UnitTests/View/Draw/NeedsDrawTests.cs index 2f6fb584f..8e2370fd1 100644 --- a/Tests/UnitTests/View/Draw/NeedsDrawTests.cs +++ b/Tests/UnitTests/View/Draw/NeedsDrawTests.cs @@ -1,7 +1,7 @@ #nullable enable using UnitTests; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "Output")] public class NeedsDrawTests () diff --git a/Tests/UnitTests/View/Draw/TransparentTests.cs b/Tests/UnitTests/View/Draw/TransparentTests.cs index 02fc4f5a7..c2a0ba8a0 100644 --- a/Tests/UnitTests/View/Draw/TransparentTests.cs +++ b/Tests/UnitTests/View/Draw/TransparentTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "Output")] public class TransparentTests (ITestOutputHelper output) diff --git a/Tests/UnitTests/View/Keyboard/KeyBindingsTests.cs b/Tests/UnitTests/View/Keyboard/KeyBindingsTests.cs index 5a5ba3440..74bfebcbe 100644 --- a/Tests/UnitTests/View/Keyboard/KeyBindingsTests.cs +++ b/Tests/UnitTests/View/Keyboard/KeyBindingsTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; /// /// Tests for View.KeyBindings diff --git a/Tests/UnitTests/View/Layout/Dim.FillTests.cs b/Tests/UnitTests/View/Layout/Dim.FillTests.cs index db9d6a964..7345147c0 100644 --- a/Tests/UnitTests/View/Layout/Dim.FillTests.cs +++ b/Tests/UnitTests/View/Layout/Dim.FillTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class DimFillTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Layout/Dim.Tests.cs b/Tests/UnitTests/View/Layout/Dim.Tests.cs index 63251a994..b15f1175b 100644 --- a/Tests/UnitTests/View/Layout/Dim.Tests.cs +++ b/Tests/UnitTests/View/Layout/Dim.Tests.cs @@ -4,7 +4,7 @@ using UnitTests; using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class DimTests { diff --git a/Tests/UnitTests/View/Layout/GetViewsUnderLocationTests.cs b/Tests/UnitTests/View/Layout/GetViewsUnderLocationTests.cs index 03e6ad28f..5fe8e91fd 100644 --- a/Tests/UnitTests/View/Layout/GetViewsUnderLocationTests.cs +++ b/Tests/UnitTests/View/Layout/GetViewsUnderLocationTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests.ViewMouseTests; [Trait ("Category", "Input")] public class GetViewsUnderLocationTests diff --git a/Tests/UnitTests/View/Layout/LayoutTests.cs b/Tests/UnitTests/View/Layout/LayoutTests.cs index 1c6d432db..53b40ceed 100644 --- a/Tests/UnitTests/View/Layout/LayoutTests.cs +++ b/Tests/UnitTests/View/Layout/LayoutTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class LayoutTests (ITestOutputHelper output) : TestsAllViews { diff --git a/Tests/UnitTests/View/Layout/Pos.AnchorEndTests.cs b/Tests/UnitTests/View/Layout/Pos.AnchorEndTests.cs index db69165de..bf5d19d47 100644 --- a/Tests/UnitTests/View/Layout/Pos.AnchorEndTests.cs +++ b/Tests/UnitTests/View/Layout/Pos.AnchorEndTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class PosAnchorEndTests () { diff --git a/Tests/UnitTests/View/Layout/Pos.CenterTests.cs b/Tests/UnitTests/View/Layout/Pos.CenterTests.cs index 541232eb1..2a4405a1d 100644 --- a/Tests/UnitTests/View/Layout/Pos.CenterTests.cs +++ b/Tests/UnitTests/View/Layout/Pos.CenterTests.cs @@ -3,7 +3,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class PosCenterTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Layout/Pos.CombineTests.cs b/Tests/UnitTests/View/Layout/Pos.CombineTests.cs index a54ed687f..4a48a3fc7 100644 --- a/Tests/UnitTests/View/Layout/Pos.CombineTests.cs +++ b/Tests/UnitTests/View/Layout/Pos.CombineTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class PosCombineTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Layout/Pos.Tests.cs b/Tests/UnitTests/View/Layout/Pos.Tests.cs index ddf219162..1b3dca7d6 100644 --- a/Tests/UnitTests/View/Layout/Pos.Tests.cs +++ b/Tests/UnitTests/View/Layout/Pos.Tests.cs @@ -3,7 +3,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class PosTests () { diff --git a/Tests/UnitTests/View/Layout/Pos.ViewTests.cs b/Tests/UnitTests/View/Layout/Pos.ViewTests.cs index b9f4c896d..dd53e3cdf 100644 --- a/Tests/UnitTests/View/Layout/Pos.ViewTests.cs +++ b/Tests/UnitTests/View/Layout/Pos.ViewTests.cs @@ -2,7 +2,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class PosViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Layout/SetLayoutTests.cs b/Tests/UnitTests/View/Layout/SetLayoutTests.cs index 9bd378fa2..d259837b3 100644 --- a/Tests/UnitTests/View/Layout/SetLayoutTests.cs +++ b/Tests/UnitTests/View/Layout/SetLayoutTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests.LayoutTests; public class SetLayoutTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/View/Mouse/MouseTests.cs b/Tests/UnitTests/View/Mouse/MouseTests.cs index a3d0b161d..0a79be069 100644 --- a/Tests/UnitTests/View/Mouse/MouseTests.cs +++ b/Tests/UnitTests/View/Mouse/MouseTests.cs @@ -1,7 +1,7 @@ using Moq; using UnitTests; -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests.ViewMouseTests; [Trait ("Category", "Input")] public class MouseTests : TestsAllViews diff --git a/Tests/UnitTests/View/Navigation/CanFocusTests.cs b/Tests/UnitTests/View/Navigation/CanFocusTests.cs index 64ca40f30..35b95d4df 100644 --- a/Tests/UnitTests/View/Navigation/CanFocusTests.cs +++ b/Tests/UnitTests/View/Navigation/CanFocusTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class CanFocusTests { diff --git a/Tests/UnitTests/View/Navigation/EnabledTests.cs b/Tests/UnitTests/View/Navigation/EnabledTests.cs index 8cd3517d1..24c2ff82a 100644 --- a/Tests/UnitTests/View/Navigation/EnabledTests.cs +++ b/Tests/UnitTests/View/Navigation/EnabledTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class EnabledTests { diff --git a/Tests/UnitTests/View/Navigation/NavigationTests.cs b/Tests/UnitTests/View/Navigation/NavigationTests.cs index d7293d928..e8ed00d80 100644 --- a/Tests/UnitTests/View/Navigation/NavigationTests.cs +++ b/Tests/UnitTests/View/Navigation/NavigationTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class NavigationTests (ITestOutputHelper output) : TestsAllViews { diff --git a/Tests/UnitTests/View/SchemeTests.cs b/Tests/UnitTests/View/SchemeTests.cs index baff4d75d..6b16dcb39 100644 --- a/Tests/UnitTests/View/SchemeTests.cs +++ b/Tests/UnitTests/View/SchemeTests.cs @@ -1,6 +1,6 @@ using Xunit; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; [Trait ("Category", "View.Scheme")] public class SchemeTests diff --git a/Tests/UnitTests/View/SubviewTests.cs b/Tests/UnitTests/View/SubviewTests.cs index b4304581b..e23732161 100644 --- a/Tests/UnitTests/View/SubviewTests.cs +++ b/Tests/UnitTests/View/SubviewTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class SubViewTests { diff --git a/Tests/UnitTests/View/TextTests.cs b/Tests/UnitTests/View/TextTests.cs index 731f0863a..f8062c744 100644 --- a/Tests/UnitTests/View/TextTests.cs +++ b/Tests/UnitTests/View/TextTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; /// /// Tests of the and properties. diff --git a/Tests/UnitTests/View/ViewCommandTests.cs b/Tests/UnitTests/View/ViewCommandTests.cs index 1bb1b92b9..8db7878de 100644 --- a/Tests/UnitTests/View/ViewCommandTests.cs +++ b/Tests/UnitTests/View/ViewCommandTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class ViewCommandTests { diff --git a/Tests/UnitTests/View/ViewTests.cs b/Tests/UnitTests/View/ViewTests.cs index a3c1e8496..c2b62059a 100644 --- a/Tests/UnitTests/View/ViewTests.cs +++ b/Tests/UnitTests/View/ViewTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class ViewTests { diff --git a/Tests/UnitTests/View/Viewport/ViewportSettings.TransparentMouseTests.cs b/Tests/UnitTests/View/Viewport/ViewportSettings.TransparentMouseTests.cs index 7f1ffafa3..089753bf7 100644 --- a/Tests/UnitTests/View/Viewport/ViewportSettings.TransparentMouseTests.cs +++ b/Tests/UnitTests/View/Viewport/ViewportSettings.TransparentMouseTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ViewTests; +namespace UnitTests.ViewTests; public class TransparentMouseTests { diff --git a/Tests/UnitTests/Views/AllViewsTests.cs b/Tests/UnitTests/Views/AllViewsTests.cs index 6fb99f082..bba6ffc48 100644 --- a/Tests/UnitTests/Views/AllViewsTests.cs +++ b/Tests/UnitTests/Views/AllViewsTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class AllViewsTests (ITestOutputHelper output) : TestsAllViews { diff --git a/Tests/UnitTests/Views/AppendAutocompleteTests.cs b/Tests/UnitTests/Views/AppendAutocompleteTests.cs index 9b3a9f62c..a3c910710 100644 --- a/Tests/UnitTests/Views/AppendAutocompleteTests.cs +++ b/Tests/UnitTests/Views/AppendAutocompleteTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.TextTests; +namespace UnitTests.TextTests; public class AppendAutocompleteTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ButtonTests.cs b/Tests/UnitTests/Views/ButtonTests.cs index 49b662710..002c1e7a3 100644 --- a/Tests/UnitTests/Views/ButtonTests.cs +++ b/Tests/UnitTests/Views/ButtonTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ButtonTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/CheckBoxTests.cs b/Tests/UnitTests/Views/CheckBoxTests.cs index 70c266253..ff575a779 100644 --- a/Tests/UnitTests/Views/CheckBoxTests.cs +++ b/Tests/UnitTests/Views/CheckBoxTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; // ReSharper disable AccessToModifiedClosure -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class CheckBoxTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ColorPicker16Tests.cs b/Tests/UnitTests/Views/ColorPicker16Tests.cs index 53182a950..be2b376cb 100644 --- a/Tests/UnitTests/Views/ColorPicker16Tests.cs +++ b/Tests/UnitTests/Views/ColorPicker16Tests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ColorPicker16Tests { diff --git a/Tests/UnitTests/Views/ColorPickerTests.cs b/Tests/UnitTests/Views/ColorPickerTests.cs index c580920a2..60f63fc12 100644 --- a/Tests/UnitTests/Views/ColorPickerTests.cs +++ b/Tests/UnitTests/Views/ColorPickerTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ColorPickerTests { diff --git a/Tests/UnitTests/Views/ComboBoxTests.cs b/Tests/UnitTests/Views/ComboBoxTests.cs index b39777502..e1280424c 100644 --- a/Tests/UnitTests/Views/ComboBoxTests.cs +++ b/Tests/UnitTests/Views/ComboBoxTests.cs @@ -1,9 +1,7 @@ using System.Collections.ObjectModel; -using Terminal.Gui.ConfigurationTests; -using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ComboBoxTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/DateFieldTests.cs b/Tests/UnitTests/Views/DateFieldTests.cs index 851ed6c1b..42e6c6961 100644 --- a/Tests/UnitTests/Views/DateFieldTests.cs +++ b/Tests/UnitTests/Views/DateFieldTests.cs @@ -2,7 +2,7 @@ using System.Runtime.InteropServices; using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class DateFieldTests { diff --git a/Tests/UnitTests/Views/DatePickerTests.cs b/Tests/UnitTests/Views/DatePickerTests.cs index 59def9bb1..4dd616494 100644 --- a/Tests/UnitTests/Views/DatePickerTests.cs +++ b/Tests/UnitTests/Views/DatePickerTests.cs @@ -1,7 +1,7 @@ using System.Globalization; using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class DatePickerTests { diff --git a/Tests/UnitTests/Views/FrameViewTests.cs b/Tests/UnitTests/Views/FrameViewTests.cs index 526c710e8..5f6bda9c1 100644 --- a/Tests/UnitTests/Views/FrameViewTests.cs +++ b/Tests/UnitTests/Views/FrameViewTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class FrameViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/GraphViewTests.cs b/Tests/UnitTests/Views/GraphViewTests.cs index 0248b4cc2..d2184945b 100644 --- a/Tests/UnitTests/Views/GraphViewTests.cs +++ b/Tests/UnitTests/Views/GraphViewTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; #region Helper Classes diff --git a/Tests/UnitTests/Views/HexViewTests.cs b/Tests/UnitTests/Views/HexViewTests.cs index 331637ff3..aafd21aeb 100644 --- a/Tests/UnitTests/Views/HexViewTests.cs +++ b/Tests/UnitTests/Views/HexViewTests.cs @@ -2,7 +2,7 @@ using System.Text; using JetBrains.Annotations; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class HexViewTests { diff --git a/Tests/UnitTests/Views/LabelTests.cs b/Tests/UnitTests/Views/LabelTests.cs index bdb97f87d..7758cb46a 100644 --- a/Tests/UnitTests/Views/LabelTests.cs +++ b/Tests/UnitTests/Views/LabelTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class LabelTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ListViewTests.cs b/Tests/UnitTests/Views/ListViewTests.cs index 8e648151b..411538b46 100644 --- a/Tests/UnitTests/Views/ListViewTests.cs +++ b/Tests/UnitTests/Views/ListViewTests.cs @@ -5,7 +5,7 @@ using Moq; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ListViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/MenuBarTests.cs b/Tests/UnitTests/Views/MenuBarTests.cs index d313bdb4c..dd9139a61 100644 --- a/Tests/UnitTests/Views/MenuBarTests.cs +++ b/Tests/UnitTests/Views/MenuBarTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class MenuBarTests () { diff --git a/Tests/UnitTests/Views/Menuv1/MenuBarv1Tests.cs b/Tests/UnitTests/Views/Menuv1/MenuBarv1Tests.cs index 3cc1d8120..a8b85669f 100644 --- a/Tests/UnitTests/Views/Menuv1/MenuBarv1Tests.cs +++ b/Tests/UnitTests/Views/Menuv1/MenuBarv1Tests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; #pragma warning disable CS0618 // Type or member is obsolete public class MenuBarv1Tests (ITestOutputHelper output) diff --git a/Tests/UnitTests/Views/Menuv1/Menuv1Tests.cs b/Tests/UnitTests/Views/Menuv1/Menuv1Tests.cs index 03b41241e..86f8bfc32 100644 --- a/Tests/UnitTests/Views/Menuv1/Menuv1Tests.cs +++ b/Tests/UnitTests/Views/Menuv1/Menuv1Tests.cs @@ -2,7 +2,7 @@ //using static Terminal.Gui.ViewTests.MenuTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; #pragma warning disable CS0618 // Type or member is obsolete public class Menuv1Tests diff --git a/Tests/UnitTests/Views/ProgressBarTests.cs b/Tests/UnitTests/Views/ProgressBarTests.cs index b02f35cc0..26b70fe0e 100644 --- a/Tests/UnitTests/Views/ProgressBarTests.cs +++ b/Tests/UnitTests/Views/ProgressBarTests.cs @@ -1,7 +1,7 @@ using System.Text; using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ProgressBarTests { diff --git a/Tests/UnitTests/Views/RadioGroupTests.cs b/Tests/UnitTests/Views/RadioGroupTests.cs index 23eb0b174..cf10e5bab 100644 --- a/Tests/UnitTests/Views/RadioGroupTests.cs +++ b/Tests/UnitTests/Views/RadioGroupTests.cs @@ -3,7 +3,7 @@ using Xunit.Abstractions; // ReSharper disable AccessToModifiedClosure -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class RadioGroupTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ScrollBarTests.cs b/Tests/UnitTests/Views/ScrollBarTests.cs index eb10bc3fe..c92dd80d2 100644 --- a/Tests/UnitTests/Views/ScrollBarTests.cs +++ b/Tests/UnitTests/Views/ScrollBarTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ScrollBarTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ScrollSliderTests.cs b/Tests/UnitTests/Views/ScrollSliderTests.cs index 445f9bcf7..e63e1f255 100644 --- a/Tests/UnitTests/Views/ScrollSliderTests.cs +++ b/Tests/UnitTests/Views/ScrollSliderTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ScrollSliderTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ShortcutTests.cs b/Tests/UnitTests/Views/ShortcutTests.cs index 408613dad..09b4e66d1 100644 --- a/Tests/UnitTests/Views/ShortcutTests.cs +++ b/Tests/UnitTests/Views/ShortcutTests.cs @@ -1,7 +1,7 @@ using JetBrains.Annotations; using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; [TestSubject (typeof (Shortcut))] public class ShortcutTests diff --git a/Tests/UnitTests/Views/SpinnerViewTests.cs b/Tests/UnitTests/Views/SpinnerViewTests.cs index ed16ef1d9..527863da1 100644 --- a/Tests/UnitTests/Views/SpinnerViewTests.cs +++ b/Tests/UnitTests/Views/SpinnerViewTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class SpinnerViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/StatusBarTests.cs b/Tests/UnitTests/Views/StatusBarTests.cs index 8e084ba7c..2cfd92a73 100644 --- a/Tests/UnitTests/Views/StatusBarTests.cs +++ b/Tests/UnitTests/Views/StatusBarTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class StatusBarTests { [Fact] diff --git a/Tests/UnitTests/Views/TabTests.cs b/Tests/UnitTests/Views/TabTests.cs index a4de58bb0..02da1f1cb 100644 --- a/Tests/UnitTests/Views/TabTests.cs +++ b/Tests/UnitTests/Views/TabTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TabTests { diff --git a/Tests/UnitTests/Views/TabViewTests.cs b/Tests/UnitTests/Views/TabViewTests.cs index 07b1ff161..81be2be03 100644 --- a/Tests/UnitTests/Views/TabViewTests.cs +++ b/Tests/UnitTests/Views/TabViewTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TabViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/TableViewTests.cs b/Tests/UnitTests/Views/TableViewTests.cs index 11209c124..27d77328c 100644 --- a/Tests/UnitTests/Views/TableViewTests.cs +++ b/Tests/UnitTests/Views/TableViewTests.cs @@ -4,7 +4,7 @@ using System.Globalization; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TableViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/TextFieldTests.cs b/Tests/UnitTests/Views/TextFieldTests.cs index 8618067b3..40fc6a300 100644 --- a/Tests/UnitTests/Views/TextFieldTests.cs +++ b/Tests/UnitTests/Views/TextFieldTests.cs @@ -4,7 +4,7 @@ using System.Text; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TextFieldTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/TextViewTests.cs b/Tests/UnitTests/Views/TextViewTests.cs index cd3aecd19..c2942dd25 100644 --- a/Tests/UnitTests/Views/TextViewTests.cs +++ b/Tests/UnitTests/Views/TextViewTests.cs @@ -4,7 +4,7 @@ using System.Text.RegularExpressions; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TextViewTests { diff --git a/Tests/UnitTests/Views/TileViewTests.cs b/Tests/UnitTests/Views/TileViewTests.cs index 88533ac19..f230ea570 100644 --- a/Tests/UnitTests/Views/TileViewTests.cs +++ b/Tests/UnitTests/Views/TileViewTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TileViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/TimeFieldTests.cs b/Tests/UnitTests/Views/TimeFieldTests.cs index 81337e092..ee487c201 100644 --- a/Tests/UnitTests/Views/TimeFieldTests.cs +++ b/Tests/UnitTests/Views/TimeFieldTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TimeFieldTests { diff --git a/Tests/UnitTests/Views/ToplevelTests.cs b/Tests/UnitTests/Views/ToplevelTests.cs index 078777939..82dfa9141 100644 --- a/Tests/UnitTests/Views/ToplevelTests.cs +++ b/Tests/UnitTests/Views/ToplevelTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ToplevelTests { diff --git a/Tests/UnitTests/Views/TreeTableSourceTests.cs b/Tests/UnitTests/Views/TreeTableSourceTests.cs index 37825f592..6d3c972be 100644 --- a/Tests/UnitTests/Views/TreeTableSourceTests.cs +++ b/Tests/UnitTests/Views/TreeTableSourceTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TreeTableSourceTests : IDisposable { diff --git a/Tests/UnitTests/Views/TreeViewTests.cs b/Tests/UnitTests/Views/TreeViewTests.cs index 6dda2c0d4..ed8b8340f 100644 --- a/Tests/UnitTests/Views/TreeViewTests.cs +++ b/Tests/UnitTests/Views/TreeViewTests.cs @@ -2,7 +2,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class TreeViewTests (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/ViewDisposalTest.cs b/Tests/UnitTests/Views/ViewDisposalTest.cs index 10e2715c4..4f109f2a8 100644 --- a/Tests/UnitTests/Views/ViewDisposalTest.cs +++ b/Tests/UnitTests/Views/ViewDisposalTest.cs @@ -2,7 +2,7 @@ using System.Reflection; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class ViewDisposalTest (ITestOutputHelper output) { diff --git a/Tests/UnitTests/Views/WindowTests.cs b/Tests/UnitTests/Views/WindowTests.cs index 27206f8f7..a53aa43aa 100644 --- a/Tests/UnitTests/Views/WindowTests.cs +++ b/Tests/UnitTests/Views/WindowTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests.ViewsTests; public class WindowTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/Application/ApplicationPopoverTests.cs b/Tests/UnitTestsParallelizable/Application/ApplicationPopoverTests.cs index c34ddd7a5..5bb470c7e 100644 --- a/Tests/UnitTestsParallelizable/Application/ApplicationPopoverTests.cs +++ b/Tests/UnitTestsParallelizable/Application/ApplicationPopoverTests.cs @@ -1,7 +1,7 @@ #nullable enable using Moq; -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests_Parallelizable.ApplicationTests; public class ApplicationPopoverTests { diff --git a/Tests/UnitTestsParallelizable/Application/CWP/ResultEventArgsTests.cs b/Tests/UnitTestsParallelizable/Application/CWP/ResultEventArgsTests.cs index 1ed0087b7..11e33fa44 100644 --- a/Tests/UnitTestsParallelizable/Application/CWP/ResultEventArgsTests.cs +++ b/Tests/UnitTestsParallelizable/Application/CWP/ResultEventArgsTests.cs @@ -2,6 +2,7 @@ using System; using Terminal.Gui.App; using Xunit; +namespace UnitTests_Parallelizable.ApplicationTests; public class ResultEventArgsTests { diff --git a/Tests/UnitTestsParallelizable/Application/LogarithmicTimeoutTests.cs b/Tests/UnitTestsParallelizable/Application/LogarithmicTimeoutTests.cs index bb95dbc6d..00d7b245d 100644 --- a/Tests/UnitTestsParallelizable/Application/LogarithmicTimeoutTests.cs +++ b/Tests/UnitTestsParallelizable/Application/LogarithmicTimeoutTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests_Parallelizable.ApplicationTests; public class LogarithmicTimeoutTests { diff --git a/Tests/UnitTestsParallelizable/Application/PopoverBaseImplTests.cs b/Tests/UnitTestsParallelizable/Application/PopoverBaseImplTests.cs index 7d8df46a8..69b795479 100644 --- a/Tests/UnitTestsParallelizable/Application/PopoverBaseImplTests.cs +++ b/Tests/UnitTestsParallelizable/Application/PopoverBaseImplTests.cs @@ -2,6 +2,7 @@ using System; using Terminal.Gui; using Terminal.Gui.App; using Xunit; +namespace UnitTests_Parallelizable.ApplicationTests; public class PopoverBaseImplTests { diff --git a/Tests/UnitTestsParallelizable/Application/SmoothAcceleratingTimeoutTests.cs b/Tests/UnitTestsParallelizable/Application/SmoothAcceleratingTimeoutTests.cs index c6fd8b91c..eac966801 100644 --- a/Tests/UnitTestsParallelizable/Application/SmoothAcceleratingTimeoutTests.cs +++ b/Tests/UnitTestsParallelizable/Application/SmoothAcceleratingTimeoutTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests_Parallelizable.ApplicationTests; public class SmoothAcceleratingTimeoutTests diff --git a/Tests/UnitTestsParallelizable/Application/StackExtensionsTests.cs b/Tests/UnitTestsParallelizable/Application/StackExtensionsTests.cs index 4c997f90a..e64960743 100644 --- a/Tests/UnitTestsParallelizable/Application/StackExtensionsTests.cs +++ b/Tests/UnitTestsParallelizable/Application/StackExtensionsTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ApplicationTests; +namespace UnitTests_Parallelizable.ApplicationTests; public class StackExtensionsTests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/Configuration/AttributeJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/AttributeJsonConverterTests.cs index 356d920fc..2fd24d34f 100644 --- a/Tests/UnitTestsParallelizable/Configuration/AttributeJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/AttributeJsonConverterTests.cs @@ -2,7 +2,7 @@ using Moq; using UnitTests; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class AttributeJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ColorJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/ColorJsonConverterTests.cs index 46fa7102b..732a6f6e4 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ColorJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ColorJsonConverterTests.cs @@ -1,6 +1,6 @@ using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ColorJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ConfigPropertyTests.cs b/Tests/UnitTestsParallelizable/Configuration/ConfigPropertyTests.cs index b686659a7..cbcb73653 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ConfigPropertyTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ConfigPropertyTests.cs @@ -1,6 +1,6 @@ using System.Collections.Concurrent; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ConfigPropertyTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ConfigurationMangerTests.cs b/Tests/UnitTestsParallelizable/Configuration/ConfigurationMangerTests.cs index 714b9b6b6..4fa15e09e 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ConfigurationMangerTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ConfigurationMangerTests.cs @@ -1,5 +1,5 @@ #nullable enable -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ConfigurationManagerTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ConfigurationPropertyAttributeTests.cs b/Tests/UnitTestsParallelizable/Configuration/ConfigurationPropertyAttributeTests.cs index d76e88e22..99eab2dd7 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ConfigurationPropertyAttributeTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ConfigurationPropertyAttributeTests.cs @@ -4,7 +4,7 @@ using System.Reflection; using System.Text.Json.Serialization; using System.Text.Json.Serialization.Metadata; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ConfigurationPropertyAttributeTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/DeepClonerTests.cs b/Tests/UnitTestsParallelizable/Configuration/DeepClonerTests.cs index 395ba3747..0f4c671a0 100644 --- a/Tests/UnitTestsParallelizable/Configuration/DeepClonerTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/DeepClonerTests.cs @@ -5,7 +5,7 @@ using System.Collections.Immutable; using System.Diagnostics; using System.Text; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; /// /// Unit tests for the class, ensuring robust deep cloning for diff --git a/Tests/UnitTestsParallelizable/Configuration/KeyCodeJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/KeyCodeJsonConverterTests.cs index 0ee4fd877..c3e0c13be 100644 --- a/Tests/UnitTestsParallelizable/Configuration/KeyCodeJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/KeyCodeJsonConverterTests.cs @@ -1,6 +1,6 @@ using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class KeyCodeJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/KeyJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/KeyJsonConverterTests.cs index 1ca1aa8d5..d3d7e1571 100644 --- a/Tests/UnitTestsParallelizable/Configuration/KeyJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/KeyJsonConverterTests.cs @@ -3,7 +3,7 @@ using System.Text.Encodings.Web; using System.Text.Json; using System.Text.Unicode; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class KeyJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/MemorySizeEstimator.cs b/Tests/UnitTestsParallelizable/Configuration/MemorySizeEstimator.cs index bbde40a72..8d042533e 100644 --- a/Tests/UnitTestsParallelizable/Configuration/MemorySizeEstimator.cs +++ b/Tests/UnitTestsParallelizable/Configuration/MemorySizeEstimator.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; using System; using System.Collections; diff --git a/Tests/UnitTestsParallelizable/Configuration/RuneJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/RuneJsonConverterTests.cs index f06955ba4..e37b47972 100644 --- a/Tests/UnitTestsParallelizable/Configuration/RuneJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/RuneJsonConverterTests.cs @@ -1,7 +1,7 @@ using System.Text; using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class RuneJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/SchemeJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/SchemeJsonConverterTests.cs index d8620bd25..b057084cc 100644 --- a/Tests/UnitTestsParallelizable/Configuration/SchemeJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/SchemeJsonConverterTests.cs @@ -1,6 +1,6 @@ using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class SchemeJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/SchemeManagerTests.cs b/Tests/UnitTestsParallelizable/Configuration/SchemeManagerTests.cs index 060d19441..c28993fe7 100644 --- a/Tests/UnitTestsParallelizable/Configuration/SchemeManagerTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/SchemeManagerTests.cs @@ -2,7 +2,7 @@ using System.Diagnostics; using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class SchemeManagerTests { @@ -18,43 +18,6 @@ public class SchemeManagerTests Assert.NotEmpty (hardCoded); } - [Fact] - public void AddScheme_Adds_And_Updates_Scheme () - { - // Arrange - var scheme = new Scheme (new Attribute (Color.Red, Color.Green)); - string schemeName = "CustomScheme"; - - // Act - SchemeManager.AddScheme (schemeName, scheme); - - // Assert - Assert.Equal (scheme, SchemeManager.GetScheme (schemeName)); - - // Update the scheme - var updatedScheme = new Scheme (new Attribute (Color.Blue, Color.Yellow)); - SchemeManager.AddScheme (schemeName, updatedScheme); - - Assert.Equal (updatedScheme, SchemeManager.GetScheme (schemeName)); - - // Cleanup - SchemeManager.RemoveScheme (schemeName); - } - - [Fact] - public void RemoveScheme_Removes_Custom_Scheme () - { - var scheme = new Scheme (new Attribute (Color.Red, Color.Green)); - string schemeName = "RemovableScheme"; - SchemeManager.AddScheme (schemeName, scheme); - - Assert.Equal (scheme, SchemeManager.GetScheme (schemeName)); - - SchemeManager.RemoveScheme (schemeName); - - Assert.Throws (() => SchemeManager.GetScheme (schemeName)); - } - [Fact] public void RemoveScheme_Throws_On_BuiltIn_Scheme () { diff --git a/Tests/UnitTestsParallelizable/Configuration/ScopeJsonConverterTests.cs b/Tests/UnitTestsParallelizable/Configuration/ScopeJsonConverterTests.cs index e2bf9f4cd..290efeba1 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ScopeJsonConverterTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ScopeJsonConverterTests.cs @@ -1,7 +1,7 @@ #nullable enable using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ScopeJsonConverterTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ScopeTests.cs b/Tests/UnitTestsParallelizable/Configuration/ScopeTests.cs index 6a8b399de..ff58f8728 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ScopeTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ScopeTests.cs @@ -1,7 +1,7 @@ #nullable enable using System.Reflection; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ScopeTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs b/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs index 24a45c8dc..24526de0f 100644 --- a/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/SettingsScopeTests.cs @@ -1,5 +1,5 @@  -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class SettingsScopeTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/SourcesManagerTests.cs b/Tests/UnitTestsParallelizable/Configuration/SourcesManagerTests.cs index a27169e38..253acc8c0 100644 --- a/Tests/UnitTestsParallelizable/Configuration/SourcesManagerTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/SourcesManagerTests.cs @@ -1,5 +1,6 @@ using System.Reflection; using System.Text.Json; +namespace UnitTests_Parallelizable.ConfigurationTests; public class SourcesManagerTests { diff --git a/Tests/UnitTestsParallelizable/Configuration/ThemeScopeTests.cs b/Tests/UnitTestsParallelizable/Configuration/ThemeScopeTests.cs index c2e55e770..4d8427e84 100644 --- a/Tests/UnitTestsParallelizable/Configuration/ThemeScopeTests.cs +++ b/Tests/UnitTestsParallelizable/Configuration/ThemeScopeTests.cs @@ -1,7 +1,7 @@ using System.Diagnostics; using System.Text.Json; -namespace Terminal.Gui.ConfigurationTests; +namespace UnitTests_Parallelizable.ConfigurationTests; public class ThemeScopeTests { diff --git a/Tests/UnitTestsParallelizable/ConsoleDrivers/AnsiResponseParserTests.cs b/Tests/UnitTestsParallelizable/ConsoleDrivers/AnsiResponseParserTests.cs index 4f040bed8..23182dff1 100644 --- a/Tests/UnitTestsParallelizable/ConsoleDrivers/AnsiResponseParserTests.cs +++ b/Tests/UnitTestsParallelizable/ConsoleDrivers/AnsiResponseParserTests.cs @@ -3,7 +3,7 @@ using System.Diagnostics; using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.DriverTests; +namespace UnitTests_Parallelizable.DriverTests; public class AnsiResponseParserTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/ConsoleDrivers/MainLoopDriverTests.cs b/Tests/UnitTestsParallelizable/ConsoleDrivers/MainLoopDriverTests.cs index 010128df0..ddc851187 100644 --- a/Tests/UnitTestsParallelizable/ConsoleDrivers/MainLoopDriverTests.cs +++ b/Tests/UnitTestsParallelizable/ConsoleDrivers/MainLoopDriverTests.cs @@ -2,7 +2,7 @@ // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.DriverTests; +namespace UnitTests_Parallelizable.DriverTests; public class MainLoopDriverTests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/Drawing/AlignerTests.cs b/Tests/UnitTestsParallelizable/Drawing/AlignerTests.cs index ecbe91c58..da50f9517 100644 --- a/Tests/UnitTestsParallelizable/Drawing/AlignerTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/AlignerTests.cs @@ -2,7 +2,7 @@ using System.Text; using System.Text.Json; using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class AlignerTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/Drawing/AttributeTests.cs b/Tests/UnitTestsParallelizable/Drawing/AttributeTests.cs index a7d4f86fb..7dd6858ec 100644 --- a/Tests/UnitTestsParallelizable/Drawing/AttributeTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/AttributeTests.cs @@ -1,6 +1,6 @@ // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class AttributeTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/CellTests.cs b/Tests/UnitTestsParallelizable/Drawing/CellTests.cs index c6d16227d..13a088a13 100644 --- a/Tests/UnitTestsParallelizable/Drawing/CellTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/CellTests.cs @@ -1,7 +1,7 @@ using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class CellTests () { diff --git a/Tests/UnitTestsParallelizable/Drawing/Color/AnsiColorNameResolverTests.cs b/Tests/UnitTestsParallelizable/Drawing/Color/AnsiColorNameResolverTests.cs index fb8b7b661..ee3ad49c0 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Color/AnsiColorNameResolverTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Color/AnsiColorNameResolverTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class AnsiColorNameResolverTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/Color/ColorStandardColorTests.cs b/Tests/UnitTestsParallelizable/Drawing/Color/ColorStandardColorTests.cs index eaf107010..04666d2cd 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Color/ColorStandardColorTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Color/ColorStandardColorTests.cs @@ -1,6 +1,6 @@ using Xunit; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class ColorStandardColorTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/Color/MultiStandardColorNameResolverTests.cs b/Tests/UnitTestsParallelizable/Drawing/Color/MultiStandardColorNameResolverTests.cs index ca75dfb50..f804e7b49 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Color/MultiStandardColorNameResolverTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Color/MultiStandardColorNameResolverTests.cs @@ -2,8 +2,9 @@ using System.Collections.Generic; using Xunit.Abstractions; +using Terminal.Gui; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class MultiStandardColorNameResolverTests (ITestOutputHelper output) { @@ -21,7 +22,7 @@ public class MultiStandardColorNameResolverTests (ITestOutputHelper output) Assert.True (parsed, $"TryParseColor should succeed for {name}"); - Color expectedColor = new (Drawing.StandardColors.GetArgb (standardColor)); + Color expectedColor = new (Terminal.Gui.Drawing.StandardColors.GetArgb (standardColor)); Assert.Equal (expectedColor.R, actualColor.R); Assert.Equal (expectedColor.G, actualColor.G); @@ -32,7 +33,7 @@ public class MultiStandardColorNameResolverTests (ITestOutputHelper output) [MemberData (nameof (StandardColors))] public void TryNameColor_ResolvesAllStandardColors (StandardColor standardColor) { - Color color = new (Drawing.StandardColors.GetArgb (standardColor)); + Color color = new (Terminal.Gui.Drawing.StandardColors.GetArgb (standardColor)); bool success = _candidate.TryNameColor (color, out string? resolvedName); @@ -44,7 +45,7 @@ public class MultiStandardColorNameResolverTests (ITestOutputHelper output) Assert.True (success, $"TryNameColor should succeed for {standardColor}"); List expectedNames = Enum.GetNames () - .Where (name => Drawing.StandardColors.GetArgb (Enum.Parse (name)) == color.Argb) + .Where (name => Terminal.Gui.Drawing.StandardColors.GetArgb (Enum.Parse (name)) == color.Argb) .ToList (); Assert.Contains (resolvedName, expectedNames); @@ -57,7 +58,7 @@ public class MultiStandardColorNameResolverTests (ITestOutputHelper output) foreach (StandardColor sc in Enum.GetValues ()) { - Color color = new (Drawing.StandardColors.GetArgb (sc)); + Color color = new (Terminal.Gui.Drawing.StandardColors.GetArgb (sc)); if (!_candidate.TryNameColor (color, out _)) { unmapped.Add (sc); diff --git a/Tests/UnitTestsParallelizable/Drawing/Color/StandardColorNameResolverTests.cs b/Tests/UnitTestsParallelizable/Drawing/Color/StandardColorNameResolverTests.cs index 34c2767ad..5b6c84eef 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Color/StandardColorNameResolverTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Color/StandardColorNameResolverTests.cs @@ -2,7 +2,7 @@ using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class StandardColorNameResolverTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/Drawing/ColorTests.Constructors.cs b/Tests/UnitTestsParallelizable/Drawing/ColorTests.Constructors.cs index 7206467eb..7b4122f61 100644 --- a/Tests/UnitTestsParallelizable/Drawing/ColorTests.Constructors.cs +++ b/Tests/UnitTestsParallelizable/Drawing/ColorTests.Constructors.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public partial class ColorTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/ColorTests.Operators.cs b/Tests/UnitTestsParallelizable/Drawing/ColorTests.Operators.cs index 092f6707c..2eecafa12 100644 --- a/Tests/UnitTestsParallelizable/Drawing/ColorTests.Operators.cs +++ b/Tests/UnitTestsParallelizable/Drawing/ColorTests.Operators.cs @@ -1,7 +1,7 @@ using System.Numerics; using System.Reflection; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public partial class ColorTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/ColorTests.ParsingAndFormatting.cs b/Tests/UnitTestsParallelizable/Drawing/ColorTests.ParsingAndFormatting.cs index 8b8ebed62..1967f64b5 100644 --- a/Tests/UnitTestsParallelizable/Drawing/ColorTests.ParsingAndFormatting.cs +++ b/Tests/UnitTestsParallelizable/Drawing/ColorTests.ParsingAndFormatting.cs @@ -2,7 +2,7 @@ using System.Buffers.Binary; using System.Globalization; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public partial class ColorTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/ColorTests.TypeChecks.cs b/Tests/UnitTestsParallelizable/Drawing/ColorTests.TypeChecks.cs index aab9ceae6..07d574191 100644 --- a/Tests/UnitTestsParallelizable/Drawing/ColorTests.TypeChecks.cs +++ b/Tests/UnitTestsParallelizable/Drawing/ColorTests.TypeChecks.cs @@ -1,7 +1,7 @@ using System.Numerics; using System.Runtime.CompilerServices; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public partial class ColorTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/ColorTests.cs b/Tests/UnitTestsParallelizable/Drawing/ColorTests.cs index 28c37b11c..396b64769 100644 --- a/Tests/UnitTestsParallelizable/Drawing/ColorTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/ColorTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public partial class ColorTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/DrawContextTests.cs b/Tests/UnitTestsParallelizable/Drawing/DrawContextTests.cs index 9d30360b8..c6b5c06f7 100644 --- a/Tests/UnitTestsParallelizable/Drawing/DrawContextTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/DrawContextTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class DrawContextTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/FillPairTests.cs b/Tests/UnitTestsParallelizable/Drawing/FillPairTests.cs index cfe8d192d..125913706 100644 --- a/Tests/UnitTestsParallelizable/Drawing/FillPairTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/FillPairTests.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class FillPairTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/GradientFillTests.cs b/Tests/UnitTestsParallelizable/Drawing/GradientFillTests.cs index 75bc65bbc..ffceb13bf 100644 --- a/Tests/UnitTestsParallelizable/Drawing/GradientFillTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/GradientFillTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class GradientFillTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/GradientTests.cs b/Tests/UnitTestsParallelizable/Drawing/GradientTests.cs index 0174a7ff9..75fcdd397 100644 --- a/Tests/UnitTestsParallelizable/Drawing/GradientTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/GradientTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class GradientTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/LineCanvasTests.cs b/Tests/UnitTestsParallelizable/Drawing/LineCanvasTests.cs index d409ef1e1..065037028 100644 --- a/Tests/UnitTestsParallelizable/Drawing/LineCanvasTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/LineCanvasTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; /// /// Pure unit tests for that don't require Application.Driver or View context. diff --git a/Tests/UnitTestsParallelizable/Drawing/PopularityPaletteWithThresholdTests.cs b/Tests/UnitTestsParallelizable/Drawing/PopularityPaletteWithThresholdTests.cs index 9a89c70c0..3a8132874 100644 --- a/Tests/UnitTestsParallelizable/Drawing/PopularityPaletteWithThresholdTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/PopularityPaletteWithThresholdTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class PopularityPaletteWithThresholdTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/Region/DifferenceTests.cs b/Tests/UnitTestsParallelizable/Drawing/Region/DifferenceTests.cs index a82c5aa88..683b3adb9 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Region/DifferenceTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Region/DifferenceTests.cs @@ -1,6 +1,6 @@ using Xunit.Sdk; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class DifferenceTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/Region/MergeRectanglesTests.cs b/Tests/UnitTestsParallelizable/Drawing/Region/MergeRectanglesTests.cs index a04f0bce4..f2bcb695a 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Region/MergeRectanglesTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Region/MergeRectanglesTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class MergeRectanglesTests diff --git a/Tests/UnitTestsParallelizable/Drawing/Region/RegionTests.cs b/Tests/UnitTestsParallelizable/Drawing/Region/RegionTests.cs index e471078da..6827d011c 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Region/RegionTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Region/RegionTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class RegionTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/Region/SubtractRectangleTests.cs b/Tests/UnitTestsParallelizable/Drawing/Region/SubtractRectangleTests.cs index 33de59d48..5568fd3fb 100644 --- a/Tests/UnitTestsParallelizable/Drawing/Region/SubtractRectangleTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/Region/SubtractRectangleTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; using Xunit; diff --git a/Tests/UnitTestsParallelizable/Drawing/RulerTests.cs b/Tests/UnitTestsParallelizable/Drawing/RulerTests.cs index 7cda4b69f..e32bd7e94 100644 --- a/Tests/UnitTestsParallelizable/Drawing/RulerTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/RulerTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; /// /// Pure unit tests for that don't require Application.Driver or View context. diff --git a/Tests/UnitTestsParallelizable/Drawing/SchemeTests.GetAttributeForRoleAlgorithmTests.cs b/Tests/UnitTestsParallelizable/Drawing/SchemeTests.GetAttributeForRoleAlgorithmTests.cs index 98f28f820..ad231702d 100644 --- a/Tests/UnitTestsParallelizable/Drawing/SchemeTests.GetAttributeForRoleAlgorithmTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/SchemeTests.GetAttributeForRoleAlgorithmTests.cs @@ -1,6 +1,6 @@ using Xunit; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class SchemeGetAttributeForRoleAlgorithmTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/SchemeTests.cs b/Tests/UnitTestsParallelizable/Drawing/SchemeTests.cs index 4b2ff06b6..73cfd3099 100644 --- a/Tests/UnitTestsParallelizable/Drawing/SchemeTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/SchemeTests.cs @@ -1,7 +1,7 @@ #nullable enable using System.Reflection; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class SchemeTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/SixelEncoderTests.cs b/Tests/UnitTestsParallelizable/Drawing/SixelEncoderTests.cs index e128cc5a2..ab97eed73 100644 --- a/Tests/UnitTestsParallelizable/Drawing/SixelEncoderTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/SixelEncoderTests.cs @@ -1,5 +1,5 @@  -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class SixelEncoderTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/SolidFillTests.cs b/Tests/UnitTestsParallelizable/Drawing/SolidFillTests.cs index 749a87c49..c335a793f 100644 --- a/Tests/UnitTestsParallelizable/Drawing/SolidFillTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/SolidFillTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class SolidFillTests { diff --git a/Tests/UnitTestsParallelizable/Drawing/StraightLineTests.cs b/Tests/UnitTestsParallelizable/Drawing/StraightLineTests.cs index cb284f9f7..7cf11cf4e 100644 --- a/Tests/UnitTestsParallelizable/Drawing/StraightLineTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/StraightLineTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class StraightLineTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/Drawing/ThicknessTests.cs b/Tests/UnitTestsParallelizable/Drawing/ThicknessTests.cs index ca584d4af..d09d66f2c 100644 --- a/Tests/UnitTestsParallelizable/Drawing/ThicknessTests.cs +++ b/Tests/UnitTestsParallelizable/Drawing/ThicknessTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DrawingTests; +namespace UnitTests_Parallelizable.DrawingTests; public class ThicknessTests { diff --git a/Tests/UnitTestsParallelizable/FileServices/FileSystemColorProviderTests.cs b/Tests/UnitTestsParallelizable/FileServices/FileSystemColorProviderTests.cs index 68b55f368..4c01895df 100644 --- a/Tests/UnitTestsParallelizable/FileServices/FileSystemColorProviderTests.cs +++ b/Tests/UnitTestsParallelizable/FileServices/FileSystemColorProviderTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.FileServicesTests; +namespace UnitTests_Parallelizable.FileServicesTests; public class FileSystemColorProviderTests { diff --git a/Tests/UnitTestsParallelizable/FileServices/FileSystemIconProviderTests.cs b/Tests/UnitTestsParallelizable/FileServices/FileSystemIconProviderTests.cs index d8d546d7b..37bd3acde 100644 --- a/Tests/UnitTestsParallelizable/FileServices/FileSystemIconProviderTests.cs +++ b/Tests/UnitTestsParallelizable/FileServices/FileSystemIconProviderTests.cs @@ -3,7 +3,7 @@ using System.IO.Abstractions.TestingHelpers; using System.Runtime.InteropServices; using System.Text; -namespace Terminal.Gui.FileServicesTests; +namespace UnitTests_Parallelizable.FileServicesTests; public class FileSystemIconProviderTests { diff --git a/Tests/UnitTestsParallelizable/FileServices/NerdFontsTests.cs b/Tests/UnitTestsParallelizable/FileServices/NerdFontsTests.cs index eb52e397f..580df348e 100644 --- a/Tests/UnitTestsParallelizable/FileServices/NerdFontsTests.cs +++ b/Tests/UnitTestsParallelizable/FileServices/NerdFontsTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.FileServicesTests; +namespace UnitTests_Parallelizable.FileServicesTests; public class NerdFontTests { diff --git a/Tests/UnitTestsParallelizable/Input/EscSeqRequestsTests.cs b/Tests/UnitTestsParallelizable/Input/EscSeqRequestsTests.cs index 7ad8ab951..0d86281a9 100644 --- a/Tests/UnitTestsParallelizable/Input/EscSeqRequestsTests.cs +++ b/Tests/UnitTestsParallelizable/Input/EscSeqRequestsTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.DriverTests; +namespace UnitTests_Parallelizable.DriverTests; public class EscSeqRequestsTests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingTests.cs b/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingTests.cs index 7976b7ed2..413c3a413 100644 --- a/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingTests.cs +++ b/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class KeyBindingTests () { diff --git a/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingsTests.cs b/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingsTests.cs index c4c491013..43c888bfa 100644 --- a/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingsTests.cs +++ b/Tests/UnitTestsParallelizable/Input/Keyboard/KeyBindingsTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class KeyBindingsTests () { diff --git a/Tests/UnitTestsParallelizable/Input/Keyboard/KeyTests.cs b/Tests/UnitTestsParallelizable/Input/Keyboard/KeyTests.cs index f0786872b..778fbf11b 100644 --- a/Tests/UnitTestsParallelizable/Input/Keyboard/KeyTests.cs +++ b/Tests/UnitTestsParallelizable/Input/Keyboard/KeyTests.cs @@ -1,7 +1,7 @@ using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class KeyTests { diff --git a/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingTests.cs b/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingTests.cs index 1d7e7e3a4..65ad17d07 100644 --- a/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingTests.cs +++ b/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class MouseBindingTests { diff --git a/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingsTests.cs b/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingsTests.cs index 3cc86d259..94e5c14f5 100644 --- a/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingsTests.cs +++ b/Tests/UnitTestsParallelizable/Input/Mouse/MouseBindingsTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class MouseBindingsTests { diff --git a/Tests/UnitTestsParallelizable/Input/Mouse/MouseEventArgsTest.cs b/Tests/UnitTestsParallelizable/Input/Mouse/MouseEventArgsTest.cs index 78124211b..483a89d7b 100644 --- a/Tests/UnitTestsParallelizable/Input/Mouse/MouseEventArgsTest.cs +++ b/Tests/UnitTestsParallelizable/Input/Mouse/MouseEventArgsTest.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class MouseEventArgsTests { diff --git a/Tests/UnitTestsParallelizable/Input/ResponderTests.cs b/Tests/UnitTestsParallelizable/Input/ResponderTests.cs index c45d37e2d..94c4a00e5 100644 --- a/Tests/UnitTestsParallelizable/Input/ResponderTests.cs +++ b/Tests/UnitTestsParallelizable/Input/ResponderTests.cs @@ -1,6 +1,6 @@ // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.InputTests; +namespace UnitTests_Parallelizable.InputTests; public class ResponderTests { diff --git a/Tests/UnitTestsParallelizable/LocalPackagesTests.cs b/Tests/UnitTestsParallelizable/LocalPackagesTests.cs index 38c268cff..8076f726f 100644 --- a/Tests/UnitTestsParallelizable/LocalPackagesTests.cs +++ b/Tests/UnitTestsParallelizable/LocalPackagesTests.cs @@ -1,5 +1,5 @@  -namespace Terminal.Gui.BuildAndDeployTests; +namespace UnitTests_Parallelizable.BuildAndDeployTests; public class LocalPackagesTests { diff --git a/Tests/UnitTestsParallelizable/Resources/ResourceManagerTests.cs b/Tests/UnitTestsParallelizable/Resources/ResourceManagerTests.cs index a671d421a..3b65957fc 100644 --- a/Tests/UnitTestsParallelizable/Resources/ResourceManagerTests.cs +++ b/Tests/UnitTestsParallelizable/Resources/ResourceManagerTests.cs @@ -5,7 +5,7 @@ using System.Globalization; using System.Resources; using System.Runtime.CompilerServices; -namespace Terminal.Gui.ResourcesTests; +namespace UnitTests_Parallelizable.ResourcesTests; public class ResourceManagerTests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/Text/AutocompleteTests.cs b/Tests/UnitTestsParallelizable/Text/AutocompleteTests.cs index 77eeb70fe..0b66c9e99 100644 --- a/Tests/UnitTestsParallelizable/Text/AutocompleteTests.cs +++ b/Tests/UnitTestsParallelizable/Text/AutocompleteTests.cs @@ -3,7 +3,7 @@ using TerminalGuiFluentTesting; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.TextTests; +namespace UnitTests_Parallelizable.TextTests; /// /// Pure unit tests for Autocomplete functionality that don't require Application or Driver. diff --git a/Tests/UnitTestsParallelizable/Text/CollectionNavigatorTests.cs b/Tests/UnitTestsParallelizable/Text/CollectionNavigatorTests.cs index 0b3401b19..c3fce7af4 100644 --- a/Tests/UnitTestsParallelizable/Text/CollectionNavigatorTests.cs +++ b/Tests/UnitTestsParallelizable/Text/CollectionNavigatorTests.cs @@ -1,7 +1,7 @@ using Moq; using Xunit.Abstractions; -namespace Terminal.Gui.TextTests; +namespace UnitTests_Parallelizable.TextTests; public class CollectionNavigatorTests { diff --git a/Tests/UnitTestsParallelizable/Text/RuneTests.cs b/Tests/UnitTestsParallelizable/Text/RuneTests.cs index 4389b870c..d37a94016 100644 --- a/Tests/UnitTestsParallelizable/Text/RuneTests.cs +++ b/Tests/UnitTestsParallelizable/Text/RuneTests.cs @@ -2,7 +2,7 @@ using System.Globalization; using System.Text; -namespace Terminal.Gui.TextTests; +namespace UnitTests_Parallelizable.TextTests; public class RuneTests { diff --git a/Tests/UnitTestsParallelizable/Text/StringTests.cs b/Tests/UnitTestsParallelizable/Text/StringTests.cs index a3f551a34..c2dc80224 100644 --- a/Tests/UnitTestsParallelizable/Text/StringTests.cs +++ b/Tests/UnitTestsParallelizable/Text/StringTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.TextTests; +namespace UnitTests_Parallelizable.TextTests; #nullable enable diff --git a/Tests/UnitTestsParallelizable/Text/TextFormatterTests.cs b/Tests/UnitTestsParallelizable/Text/TextFormatterTests.cs index bfbe78d20..9577e28f8 100644 --- a/Tests/UnitTestsParallelizable/Text/TextFormatterTests.cs +++ b/Tests/UnitTestsParallelizable/Text/TextFormatterTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.TextTests; +namespace UnitTests_Parallelizable.TextTests; public class TextFormatterTests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/View/Adornment/AdornmentSubViewTests.cs b/Tests/UnitTestsParallelizable/View/Adornment/AdornmentSubViewTests.cs index dcfca9e29..3876b618c 100644 --- a/Tests/UnitTestsParallelizable/View/Adornment/AdornmentSubViewTests.cs +++ b/Tests/UnitTestsParallelizable/View/Adornment/AdornmentSubViewTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class AdornmentSubViewTests () diff --git a/Tests/UnitTestsParallelizable/View/Adornment/AdornmentTests.cs b/Tests/UnitTestsParallelizable/View/Adornment/AdornmentTests.cs index b7d0ec390..62b371df1 100644 --- a/Tests/UnitTestsParallelizable/View/Adornment/AdornmentTests.cs +++ b/Tests/UnitTestsParallelizable/View/Adornment/AdornmentTests.cs @@ -1,5 +1,5 @@ #nullable enable -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class AdornmentTests diff --git a/Tests/UnitTestsParallelizable/View/Adornment/MarginTests.cs b/Tests/UnitTestsParallelizable/View/Adornment/MarginTests.cs index 26ff16088..6719c0ee5 100644 --- a/Tests/UnitTestsParallelizable/View/Adornment/MarginTests.cs +++ b/Tests/UnitTestsParallelizable/View/Adornment/MarginTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; public class MarginTests { diff --git a/Tests/UnitTestsParallelizable/View/Adornment/ShadowStyletests.cs b/Tests/UnitTestsParallelizable/View/Adornment/ShadowStyletests.cs index ecf379b26..a3add070b 100644 --- a/Tests/UnitTestsParallelizable/View/Adornment/ShadowStyletests.cs +++ b/Tests/UnitTestsParallelizable/View/Adornment/ShadowStyletests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] diff --git a/Tests/UnitTestsParallelizable/View/Adornment/ToScreenTests.cs b/Tests/UnitTestsParallelizable/View/Adornment/ToScreenTests.cs index 2d8f03de1..cbea7cca8 100644 --- a/Tests/UnitTestsParallelizable/View/Adornment/ToScreenTests.cs +++ b/Tests/UnitTestsParallelizable/View/Adornment/ToScreenTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; /// /// Test the and methods. diff --git a/Tests/UnitTestsParallelizable/View/ArrangementTests.cs b/Tests/UnitTestsParallelizable/View/ArrangementTests.cs index 50995b2aa..57c193c84 100644 --- a/Tests/UnitTestsParallelizable/View/ArrangementTests.cs +++ b/Tests/UnitTestsParallelizable/View/ArrangementTests.cs @@ -1,7 +1,7 @@ using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; public class ArrangementTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Draw/NeedsDrawTests.cs b/Tests/UnitTestsParallelizable/View/Draw/NeedsDrawTests.cs index 2f425ccd4..cf3b7a0c8 100644 --- a/Tests/UnitTestsParallelizable/View/Draw/NeedsDrawTests.cs +++ b/Tests/UnitTestsParallelizable/View/Draw/NeedsDrawTests.cs @@ -1,5 +1,5 @@ #nullable enable -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Trait ("Category", "Output")] public class NeedsDrawTests diff --git a/Tests/UnitTestsParallelizable/View/InitTests.cs b/Tests/UnitTestsParallelizable/View/InitTests.cs index 4fe482652..a6883ae7e 100644 --- a/Tests/UnitTestsParallelizable/View/InitTests.cs +++ b/Tests/UnitTestsParallelizable/View/InitTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; /// Tests View BeginInit/EndInit/Initialized functionality. public class InitTests diff --git a/Tests/UnitTestsParallelizable/View/Keyboard/HotKeyTests.cs b/Tests/UnitTestsParallelizable/View/Keyboard/HotKeyTests.cs index c5afb5df9..06a55a9bc 100644 --- a/Tests/UnitTestsParallelizable/View/Keyboard/HotKeyTests.cs +++ b/Tests/UnitTestsParallelizable/View/Keyboard/HotKeyTests.cs @@ -1,7 +1,7 @@ using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class HotKeyTests diff --git a/Tests/UnitTestsParallelizable/View/Keyboard/KeyboardEventTests.cs b/Tests/UnitTestsParallelizable/View/Keyboard/KeyboardEventTests.cs index a50032f07..2b1bd2d77 100644 --- a/Tests/UnitTestsParallelizable/View/Keyboard/KeyboardEventTests.cs +++ b/Tests/UnitTestsParallelizable/View/Keyboard/KeyboardEventTests.cs @@ -3,7 +3,7 @@ using Xunit.Abstractions; // Alias Console to MockConsole so we don't accidentally use Console -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class KeyboardEventTests (ITestOutputHelper output) : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.DimTypes.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.DimTypes.cs index 002375d3c..44c0add1d 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.DimTypes.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.DimTypes.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public partial class DimAutoTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.MinMax.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.MinMax.cs index ff6181f34..08532c876 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.MinMax.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.MinMax.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public partial class DimAutoTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.PosTypes.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.PosTypes.cs index 62cfc2588..0078736c5 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.PosTypes.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.PosTypes.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public partial class DimAutoTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.cs index 6335c58c5..b42b0bc9c 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.AutoTests.cs @@ -3,7 +3,7 @@ using UnitTests; using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; [Trait ("Category", "Layout")] public partial class DimAutoTests (ITestOutputHelper output) diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.CombineTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.CombineTests.cs index d48dfe799..a101bd714 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.CombineTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.CombineTests.cs @@ -1,7 +1,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class DimCombineTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.FillTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.FillTests.cs index ea93099f4..356e3744b 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.FillTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.FillTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class DimFillTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.FuncTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.FuncTests.cs index a94a858cb..c752619ad 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.FuncTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.FuncTests.cs @@ -1,7 +1,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class DimFuncTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.PercentTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.PercentTests.cs index 2ccfd3861..d2faa3af6 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.PercentTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.PercentTests.cs @@ -3,7 +3,7 @@ using System.Text; using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class DimPercentTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.Tests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.Tests.cs index 8c716e1ec..81aace3fc 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.Tests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.Tests.cs @@ -4,7 +4,7 @@ using UnitTests; using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; [Collection ("Global Test Setup")] public class DimTests diff --git a/Tests/UnitTestsParallelizable/View/Layout/Dim.ViewTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Dim.ViewTests.cs index ceb463548..2bbbfa9f8 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Dim.ViewTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Dim.ViewTests.cs @@ -1,6 +1,6 @@ using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class DimViewTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/FrameTests.cs b/Tests/UnitTestsParallelizable/View/Layout/FrameTests.cs index 9a71c5a94..364012cc3 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/FrameTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/FrameTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class FrameTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/GetViewsAtLocationTests.cs b/Tests/UnitTestsParallelizable/View/Layout/GetViewsAtLocationTests.cs index 88886740f..d2b2e8484 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/GetViewsAtLocationTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/GetViewsAtLocationTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests_Parallelizable.ViewMouseTests; [Trait ("Category", "Layout")] public class GetViewsAtLocationTests diff --git a/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationForRootTests.cs b/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationForRootTests.cs index a624fa8d1..34ef4d348 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationForRootTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationForRootTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests_Parallelizable.ViewMouseTests; [Trait ("Category", "Input")] public class GetViewsUnderLocationForRootTests diff --git a/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationTests.cs b/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationTests.cs index 4433bef3a..7e8a93564 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/GetViewsUnderLocationTests.cs @@ -1,6 +1,6 @@ #nullable enable -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests_Parallelizable.ViewMouseTests; [Trait ("Category", "Input")] public class GetViewsUnderLocationTests diff --git a/Tests/UnitTestsParallelizable/View/Layout/LayoutTests.cs b/Tests/UnitTestsParallelizable/View/Layout/LayoutTests.cs index 642929e51..27b34c2b9 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/LayoutTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/LayoutTests.cs @@ -1,6 +1,6 @@ using UnitTests.Parallelizable; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class LayoutTests : GlobalTestSetup { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.AbsoluteTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.AbsoluteTests.cs index 814a0299f..9bdc21d1a 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.AbsoluteTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.AbsoluteTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosAbsoluteTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.AlignTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.AlignTests.cs index dfc670d18..f0ef53409 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.AlignTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.AlignTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosAlignTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.AnchorEndTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.AnchorEndTests.cs index ddd59432b..767466209 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.AnchorEndTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.AnchorEndTests.cs @@ -1,7 +1,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosAnchorEndTests () { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.CenterTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.CenterTests.cs index 96fbc95b7..d9367c927 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.CenterTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.CenterTests.cs @@ -1,7 +1,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosCenterTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.CombineTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.CombineTests.cs index a5bb92976..1e2d4968c 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.CombineTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.CombineTests.cs @@ -4,7 +4,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosCombineTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.FuncTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.FuncTests.cs index 9665aceed..adc67dd60 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.FuncTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.FuncTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosFuncTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.PercentTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.PercentTests.cs index e508ea699..65df904ee 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.PercentTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.PercentTests.cs @@ -1,7 +1,7 @@ using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosPercentTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.Tests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.Tests.cs index b37cf622f..392140f3e 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.Tests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.Tests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/Pos.ViewTests.cs b/Tests/UnitTestsParallelizable/View/Layout/Pos.ViewTests.cs index b6bc54d91..efac33e90 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/Pos.ViewTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/Pos.ViewTests.cs @@ -1,6 +1,6 @@ using static Terminal.Gui.ViewBase.Pos; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class PosViewTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/ScreenToTests.cs b/Tests/UnitTestsParallelizable/View/Layout/ScreenToTests.cs index 174fb2f02..5b6c151b2 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/ScreenToTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/ScreenToTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; /// Tests for view coordinate mapping (e.g. etc...). public class ScreenToTests diff --git a/Tests/UnitTestsParallelizable/View/Layout/SetRelativeLayoutTests.cs b/Tests/UnitTestsParallelizable/View/Layout/SetRelativeLayoutTests.cs index bf032df2d..a10f9d6df 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/SetRelativeLayoutTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/SetRelativeLayoutTests.cs @@ -3,7 +3,7 @@ using UnitTests; using Xunit.Abstractions; using static Terminal.Gui.ViewBase.Dim; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class SetRelativeLayoutTests { diff --git a/Tests/UnitTestsParallelizable/View/Layout/ToScreenTests.cs b/Tests/UnitTestsParallelizable/View/Layout/ToScreenTests.cs index 82fd79d32..1c2a12989 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/ToScreenTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/ToScreenTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; /// /// Test the and methods. diff --git a/Tests/UnitTestsParallelizable/View/Layout/TopologicalSortTests.cs b/Tests/UnitTestsParallelizable/View/Layout/TopologicalSortTests.cs index edcab3297..e2fe774a4 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/TopologicalSortTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/TopologicalSortTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.LayoutTests; +namespace UnitTests_Parallelizable.LayoutTests; public class TopologicalSortTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/View/Layout/ViewLayoutEventTests.cs b/Tests/UnitTestsParallelizable/View/Layout/ViewLayoutEventTests.cs index 7c8ad7cd6..bc368764f 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/ViewLayoutEventTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/ViewLayoutEventTests.cs @@ -1,7 +1,7 @@ #nullable enable using UnitTests.Parallelizable; -namespace Terminal.Gui.ViewLayoutEventTests; +namespace UnitTests_Parallelizable.ViewLayoutEventTests; public class ViewLayoutEventTests : GlobalTestSetup { @@ -240,12 +240,12 @@ public class ViewLayoutEventTests : GlobalTestSetup public bool CancelWidthChange { get; set; } public bool CancelHeightChange { get; set; } - protected override bool OnWidthChanging (App.ValueChangingEventArgs args) + protected override bool OnWidthChanging (ValueChangingEventArgs args) { return CancelWidthChange; } - protected override bool OnHeightChanging (App.ValueChangingEventArgs args) + protected override bool OnHeightChanging (ValueChangingEventArgs args) { return CancelHeightChange; } diff --git a/Tests/UnitTestsParallelizable/View/Layout/ViewportTests.cs b/Tests/UnitTestsParallelizable/View/Layout/ViewportTests.cs index 4dc07beb8..11c935283 100644 --- a/Tests/UnitTestsParallelizable/View/Layout/ViewportTests.cs +++ b/Tests/UnitTestsParallelizable/View/Layout/ViewportTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; /// /// Test the . diff --git a/Tests/UnitTestsParallelizable/View/Mouse/MouseEnterLeaveTests.cs b/Tests/UnitTestsParallelizable/View/Mouse/MouseEnterLeaveTests.cs index e91154c5d..bd034084b 100644 --- a/Tests/UnitTestsParallelizable/View/Mouse/MouseEnterLeaveTests.cs +++ b/Tests/UnitTestsParallelizable/View/Mouse/MouseEnterLeaveTests.cs @@ -1,6 +1,6 @@ using System.ComponentModel; -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests_Parallelizable.ViewMouseTests; [Trait ("Category", "Input")] public class MouseEnterLeaveTests diff --git a/Tests/UnitTestsParallelizable/View/Mouse/MouseTests.cs b/Tests/UnitTestsParallelizable/View/Mouse/MouseTests.cs index 4469a22c0..9091312c4 100644 --- a/Tests/UnitTestsParallelizable/View/Mouse/MouseTests.cs +++ b/Tests/UnitTestsParallelizable/View/Mouse/MouseTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewMouseTests; +namespace UnitTests_Parallelizable.ViewMouseTests; [Collection ("Global Test Setup")] diff --git a/Tests/UnitTestsParallelizable/View/Navigation/AddRemoveTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/AddRemoveTests.cs index 23728524c..03fe076a9 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/AddRemoveTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/AddRemoveTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class AddRemoveNavigationTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/AdvanceFocusTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/AdvanceFocusTests.cs index 83548e963..40dcc681d 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/AdvanceFocusTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/AdvanceFocusTests.cs @@ -1,7 +1,7 @@ using System.Runtime.Intrinsics; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; public class AdvanceFocusTests () { diff --git a/Tests/UnitTestsParallelizable/View/Navigation/CanFocusTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/CanFocusTests.cs index 3ab111375..01b86092e 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/CanFocusTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/CanFocusTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class CanFocusTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/EnabledTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/EnabledTests.cs index ae424828e..6a31d7f90 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/EnabledTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/EnabledTests.cs @@ -1,6 +1,6 @@ using UnitTests; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class EnabledTests : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/HasFocusChangeEventTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/HasFocusChangeEventTests.cs index f934561b0..ea4fa6064 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/HasFocusChangeEventTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/HasFocusChangeEventTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class HasFocusChangeEventTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/HasFocusTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/HasFocusTests.cs index 8a66a0590..787bbfe4d 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/HasFocusTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/HasFocusTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class HasFocusTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/NavigationTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/NavigationTests.cs index 45e526cf6..bed43ef50 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/NavigationTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/NavigationTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; public class NavigationTests { diff --git a/Tests/UnitTestsParallelizable/View/Navigation/RestoreFocusTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/RestoreFocusTests.cs index f8563761f..3fbd165e2 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/RestoreFocusTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/RestoreFocusTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class RestoreFocusTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/SetFocusTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/SetFocusTests.cs index 4a9f00546..09dc7edb4 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/SetFocusTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/SetFocusTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class SetFocusTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Navigation/VisibleTests.cs b/Tests/UnitTestsParallelizable/View/Navigation/VisibleTests.cs index c4ef52705..295cef50e 100644 --- a/Tests/UnitTestsParallelizable/View/Navigation/VisibleTests.cs +++ b/Tests/UnitTestsParallelizable/View/Navigation/VisibleTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class VisibleTests () : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/View/Orientation/OrientationHelperTests.cs b/Tests/UnitTestsParallelizable/View/Orientation/OrientationHelperTests.cs index d4b79f90f..dcb32bc12 100644 --- a/Tests/UnitTestsParallelizable/View/Orientation/OrientationHelperTests.cs +++ b/Tests/UnitTestsParallelizable/View/Orientation/OrientationHelperTests.cs @@ -1,6 +1,6 @@ using Moq; -namespace Terminal.Gui.ViewTests.OrientationTests; +namespace UnitTests_Parallelizable.ViewTests.OrientationTests; public class OrientationHelperTests { diff --git a/Tests/UnitTestsParallelizable/View/Orientation/OrientationTests.cs b/Tests/UnitTestsParallelizable/View/Orientation/OrientationTests.cs index d000ca9db..f682d034d 100644 --- a/Tests/UnitTestsParallelizable/View/Orientation/OrientationTests.cs +++ b/Tests/UnitTestsParallelizable/View/Orientation/OrientationTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewTests.OrientationTests; +namespace UnitTests_Parallelizable.ViewTests.OrientationTests; public class OrientationTests { diff --git a/Tests/UnitTestsParallelizable/View/SchemeTests.cs b/Tests/UnitTestsParallelizable/View/SchemeTests.cs index 18f798f90..8ea8cec50 100644 --- a/Tests/UnitTestsParallelizable/View/SchemeTests.cs +++ b/Tests/UnitTestsParallelizable/View/SchemeTests.cs @@ -1,7 +1,7 @@ #nullable enable using Xunit; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Trait ("Category", "View.Scheme")] public class SchemeTests diff --git a/Tests/UnitTestsParallelizable/View/SubviewTests.cs b/Tests/UnitTestsParallelizable/View/SubviewTests.cs index a2a1aa39c..f02650d54 100644 --- a/Tests/UnitTestsParallelizable/View/SubviewTests.cs +++ b/Tests/UnitTestsParallelizable/View/SubviewTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; [Collection ("Global Test Setup")] public class SubViewTests diff --git a/Tests/UnitTestsParallelizable/View/TextTests.cs b/Tests/UnitTestsParallelizable/View/TextTests.cs index 31ca7eea8..110af6302 100644 --- a/Tests/UnitTestsParallelizable/View/TextTests.cs +++ b/Tests/UnitTestsParallelizable/View/TextTests.cs @@ -2,7 +2,7 @@ using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; /// /// Tests of the and properties. diff --git a/Tests/UnitTestsParallelizable/View/TitleTests.cs b/Tests/UnitTestsParallelizable/View/TitleTests.cs index b0435141e..06dc3a631 100644 --- a/Tests/UnitTestsParallelizable/View/TitleTests.cs +++ b/Tests/UnitTestsParallelizable/View/TitleTests.cs @@ -1,7 +1,7 @@ using System.Text; using Xunit.Abstractions; -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; public class TitleTests { diff --git a/Tests/UnitTestsParallelizable/View/ViewCommandTests.cs b/Tests/UnitTestsParallelizable/View/ViewCommandTests.cs index 86418d930..a571699c4 100644 --- a/Tests/UnitTestsParallelizable/View/ViewCommandTests.cs +++ b/Tests/UnitTestsParallelizable/View/ViewCommandTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewTests; +namespace UnitTests_Parallelizable.ViewTests; public class ViewCommandTests { #region OnAccept/Accept tests diff --git a/Tests/UnitTestsParallelizable/Views/AllViewsTests.cs b/Tests/UnitTestsParallelizable/Views/AllViewsTests.cs index 45ecb0437..4acedccda 100644 --- a/Tests/UnitTestsParallelizable/Views/AllViewsTests.cs +++ b/Tests/UnitTestsParallelizable/Views/AllViewsTests.cs @@ -3,7 +3,7 @@ using Microsoft.VisualStudio.TestPlatform.Utilities; using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; [Collection ("Global Test Setup")] public class AllViewsTests (ITestOutputHelper output) : TestsAllViews diff --git a/Tests/UnitTestsParallelizable/Views/BarTests.cs b/Tests/UnitTestsParallelizable/Views/BarTests.cs index b7a3d0f43..259c97abd 100644 --- a/Tests/UnitTestsParallelizable/Views/BarTests.cs +++ b/Tests/UnitTestsParallelizable/Views/BarTests.cs @@ -1,6 +1,6 @@ using JetBrains.Annotations; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; [TestSubject (typeof (Bar))] public class BarTests diff --git a/Tests/UnitTestsParallelizable/Views/ButtonTests.cs b/Tests/UnitTestsParallelizable/Views/ButtonTests.cs index 90ed47742..5164b7045 100644 --- a/Tests/UnitTestsParallelizable/Views/ButtonTests.cs +++ b/Tests/UnitTestsParallelizable/Views/ButtonTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; /// /// Pure unit tests for that don't require Application static dependencies. diff --git a/Tests/UnitTestsParallelizable/Views/CheckBoxTests.cs b/Tests/UnitTestsParallelizable/Views/CheckBoxTests.cs index d709c455a..2bc1d9159 100644 --- a/Tests/UnitTestsParallelizable/Views/CheckBoxTests.cs +++ b/Tests/UnitTestsParallelizable/Views/CheckBoxTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class CheckBoxTests (ITestOutputHelper output) { diff --git a/Tests/UnitTestsParallelizable/Views/ColorPickerTests.cs b/Tests/UnitTestsParallelizable/Views/ColorPickerTests.cs index 4c3db9f5f..4ae7cb5a0 100644 --- a/Tests/UnitTestsParallelizable/Views/ColorPickerTests.cs +++ b/Tests/UnitTestsParallelizable/Views/ColorPickerTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; /// /// Pure unit tests for that don't require Application.Driver or View context. diff --git a/Tests/UnitTestsParallelizable/Views/DatePickerTests.cs b/Tests/UnitTestsParallelizable/Views/DatePickerTests.cs index 01debc179..0f5aed492 100644 --- a/Tests/UnitTestsParallelizable/Views/DatePickerTests.cs +++ b/Tests/UnitTestsParallelizable/Views/DatePickerTests.cs @@ -1,6 +1,6 @@ using System.Globalization; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; /// /// Pure unit tests for that don't require Application.Driver or View context. diff --git a/Tests/UnitTestsParallelizable/Views/FlagSelectorTests.cs b/Tests/UnitTestsParallelizable/Views/FlagSelectorTests.cs index 08fcc8ea7..de740d8d7 100644 --- a/Tests/UnitTestsParallelizable/Views/FlagSelectorTests.cs +++ b/Tests/UnitTestsParallelizable/Views/FlagSelectorTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class FlagSelectorTests { diff --git a/Tests/UnitTestsParallelizable/Views/LabelTests.cs b/Tests/UnitTestsParallelizable/Views/LabelTests.cs index 6f0b3b5bb..afaf6b131 100644 --- a/Tests/UnitTestsParallelizable/Views/LabelTests.cs +++ b/Tests/UnitTestsParallelizable/Views/LabelTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; /// /// Pure unit tests for that don't require Application.Driver or Application context. diff --git a/Tests/UnitTestsParallelizable/Views/LineTests.cs b/Tests/UnitTestsParallelizable/Views/LineTests.cs index baa1ea48d..8fa44f4a1 100644 --- a/Tests/UnitTestsParallelizable/Views/LineTests.cs +++ b/Tests/UnitTestsParallelizable/Views/LineTests.cs @@ -1,4 +1,4 @@ -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class LineTests { diff --git a/Tests/UnitTestsParallelizable/Views/ListViewTests.cs b/Tests/UnitTestsParallelizable/Views/ListViewTests.cs index aee5db005..9b942d681 100644 --- a/Tests/UnitTestsParallelizable/Views/ListViewTests.cs +++ b/Tests/UnitTestsParallelizable/Views/ListViewTests.cs @@ -1,7 +1,7 @@ using System.Collections.ObjectModel; using Moq; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class ListViewTests { diff --git a/Tests/UnitTestsParallelizable/Views/MenuBarItemTests.cs b/Tests/UnitTestsParallelizable/Views/MenuBarItemTests.cs index 238a39c64..75ac7a9a5 100644 --- a/Tests/UnitTestsParallelizable/Views/MenuBarItemTests.cs +++ b/Tests/UnitTestsParallelizable/Views/MenuBarItemTests.cs @@ -2,7 +2,7 @@ //using static Terminal.Gui.ViewTests.MenuTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class MenuBarItemTests () { diff --git a/Tests/UnitTestsParallelizable/Views/MenuItemTests.cs b/Tests/UnitTestsParallelizable/Views/MenuItemTests.cs index 0e7cf4140..b48502cd9 100644 --- a/Tests/UnitTestsParallelizable/Views/MenuItemTests.cs +++ b/Tests/UnitTestsParallelizable/Views/MenuItemTests.cs @@ -2,7 +2,7 @@ //using static Terminal.Gui.ViewTests.MenuTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class MenuItemTests () { diff --git a/Tests/UnitTestsParallelizable/Views/MenuTests.cs b/Tests/UnitTestsParallelizable/Views/MenuTests.cs index f29d7273f..f83dd490e 100644 --- a/Tests/UnitTestsParallelizable/Views/MenuTests.cs +++ b/Tests/UnitTestsParallelizable/Views/MenuTests.cs @@ -2,7 +2,7 @@ //using static Terminal.Gui.ViewTests.MenuTests; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class MenuTests () { diff --git a/Tests/UnitTestsParallelizable/Views/NumericUpDownTests.cs b/Tests/UnitTestsParallelizable/Views/NumericUpDownTests.cs index 89e5055e7..4a9975244 100644 --- a/Tests/UnitTestsParallelizable/Views/NumericUpDownTests.cs +++ b/Tests/UnitTestsParallelizable/Views/NumericUpDownTests.cs @@ -1,6 +1,6 @@ using System.Globalization; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class NumericUpDownTests { diff --git a/Tests/UnitTestsParallelizable/Views/ScrollBarTests.cs b/Tests/UnitTestsParallelizable/Views/ScrollBarTests.cs index e557423ec..fb1011ca0 100644 --- a/Tests/UnitTestsParallelizable/Views/ScrollBarTests.cs +++ b/Tests/UnitTestsParallelizable/Views/ScrollBarTests.cs @@ -1,7 +1,7 @@ using UnitTests; using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class ScrollBarTests { diff --git a/Tests/UnitTestsParallelizable/Views/ScrollSliderTests.cs b/Tests/UnitTestsParallelizable/Views/ScrollSliderTests.cs index 7198e3afd..89d9649c1 100644 --- a/Tests/UnitTestsParallelizable/Views/ScrollSliderTests.cs +++ b/Tests/UnitTestsParallelizable/Views/ScrollSliderTests.cs @@ -1,6 +1,6 @@ using Xunit.Abstractions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class ScrollSliderTests { diff --git a/Tests/UnitTestsParallelizable/Views/ShortcutTests.cs b/Tests/UnitTestsParallelizable/Views/ShortcutTests.cs index b4cff4a03..7866055ca 100644 --- a/Tests/UnitTestsParallelizable/Views/ShortcutTests.cs +++ b/Tests/UnitTestsParallelizable/Views/ShortcutTests.cs @@ -1,6 +1,6 @@ using JetBrains.Annotations; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; [Collection ("Global Test Setup")] diff --git a/Tests/UnitTestsParallelizable/Views/SliderTests.cs b/Tests/UnitTestsParallelizable/Views/SliderTests.cs index 1a2d7f2ef..ec9644b71 100644 --- a/Tests/UnitTestsParallelizable/Views/SliderTests.cs +++ b/Tests/UnitTestsParallelizable/Views/SliderTests.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class SliderOptionTests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/Views/TableViewTests.cs b/Tests/UnitTestsParallelizable/Views/TableViewTests.cs index 13ec674cd..8fefa1230 100644 --- a/Tests/UnitTestsParallelizable/Views/TableViewTests.cs +++ b/Tests/UnitTestsParallelizable/Views/TableViewTests.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; using JetBrains.Annotations; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; [TestSubject (typeof (TableView))] public class TableViewTests diff --git a/Tests/UnitTestsParallelizable/Views/TextFieldTests.cs b/Tests/UnitTestsParallelizable/Views/TextFieldTests.cs index a38f6188b..0955db87b 100644 --- a/Tests/UnitTestsParallelizable/Views/TextFieldTests.cs +++ b/Tests/UnitTestsParallelizable/Views/TextFieldTests.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class TextFieldTests { diff --git a/Tests/UnitTestsParallelizable/Views/TextValidateFieldTests.cs b/Tests/UnitTestsParallelizable/Views/TextValidateFieldTests.cs index babe63b93..7b46fc119 100644 --- a/Tests/UnitTestsParallelizable/Views/TextValidateFieldTests.cs +++ b/Tests/UnitTestsParallelizable/Views/TextValidateFieldTests.cs @@ -1,6 +1,6 @@ using System.Text.RegularExpressions; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class TextValidateField_NET_Provider_Tests : UnitTests.Parallelizable.ParallelizableBase { diff --git a/Tests/UnitTestsParallelizable/Views/TextViewTests.cs b/Tests/UnitTestsParallelizable/Views/TextViewTests.cs index e3fc51d55..8ea0df071 100644 --- a/Tests/UnitTestsParallelizable/Views/TextViewTests.cs +++ b/Tests/UnitTestsParallelizable/Views/TextViewTests.cs @@ -1,6 +1,6 @@ using System.Text; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; public class TextViewTests { diff --git a/Tests/UnitTestsParallelizable/Views/TreeViewTests.cs b/Tests/UnitTestsParallelizable/Views/TreeViewTests.cs index 774e3ebe8..11e16bdf6 100644 --- a/Tests/UnitTestsParallelizable/Views/TreeViewTests.cs +++ b/Tests/UnitTestsParallelizable/Views/TreeViewTests.cs @@ -1,6 +1,6 @@ using JetBrains.Annotations; -namespace Terminal.Gui.ViewsTests; +namespace UnitTests_Parallelizable.ViewsTests; [TestSubject (typeof (TreeView))] public class TreeViewTests