Files
Terminal.Gui/Tests
Tig 3ff4086716 Refactor Application constants and remove unused field
Removed the internal `_forceFakeConsole` field and its
associated `ClearForceFakeConsole` method from
`Application.Driver.cs` to simplify internal state management.

Renamed `DefaultMaximumIterationsPerSecond` to
`DEFAULT_MAXIMUM_ITERATIONS_PER_SECOND` in `Application.cs`
to align with updated naming conventions. Updated all
references and XML documentation accordingly.

Adjusted test logic in `ApplicationTests.cs` and
`TestSetup.cs` to remove references to `_forceFakeConsole`
and ensure alignment with the updated codebase.
2025-10-26 22:33:52 +00:00
..

Terminal.Gui Tests

This folder contains the tests for Terminal.Gui.

./UnitTests

This folder contains the unit tests for Terminal.Gui that can not be run in parallel. This is because they depend on Application or other class that use static state or ConfigurationManager.

We should be striving to move as many tests as possible to the ./UnitTestsParallelizable folder.

./UnitTestsParallelizable

This folder contains the unit tests for Terminal.Gui that can be run in parallel.

./IntegrationTests

This folder contains the integration tests for Terminal.Gui.

./StressTests

This folder contains the stress tests for Terminal.Gui.

./PerformanceTests

This folder WILL contain the performance tests for Terminal.Gui.

See the Testing wiki for details on how to add more tests.