copilot-swe-agent[bot] ce46e71c40 Revert incorrect FIFO fix - logic was inverted causing LIFO пре 1 месец
..
Benchmarks cab22566ea Fixes #4107 - Revamps Terminal.Gui's `namespace` (#4109) пре 6 месеци
IntegrationTests b502471ee6 Fixes #4300 - Scrolling intermittently causes All_Scenarios_Quit_And_Init_Shutdown_Properly to fail (#4301) пре 1 месец
StressTests 8aec05248d Fixes #4274 - v2win vsdebugconsole issue CM related UnitTest failures (#4287) пре 1 месец
TerminalGuiFluentTesting 2be8397203 Remove legacy drivers, simplify architecture, and reorganize codebase structure (#4270) пре 1 месец
TerminalGuiFluentTestingXunit 3a645191db Fixes #4170 - Added analyzer that flags when user does not have `Handled=true` (#4182) пре 5 месеци
TerminalGuiFluentTestingXunit.Generator 51dda7e69f Fixes #3947 Adds Fake driver and fixes fluent tests (iteration-zero) (#4225) пре 3 месеци
UnitTests ce46e71c40 Revert incorrect FIFO fix - logic was inverted causing LIFO пре 1 месец
UnitTestsParallelizable fdeaa8331b Fixes #4298 - Updates test namespaces (#4299) пре 1 месец
CATEGORY_A_MIGRATION_SUMMARY.md ed64f5773e Fixes #4282 - Migrate tests from UnitTests to UnitTests.Parallelizable (67 tests migrated + comprehensive documentation) (#4293) пре 1 месец
PERFORMANCE_ANALYSIS.md 041e9de70e Migrate 210 tests to UnitTests.Parallelizable, add CreateFakeDriver helper, prove View.Draw() works in parallel tests, and provide comprehensive performance analysis (#4297) пре 1 месец
README.md b0f32811eb Fixes #3930 - Splits tests to `Tests/UnitTests`, `Tests/IntegrationTests`, `Tests/StressTests` (#3954) пре 9 месеци
TEST_MIGRATION_REPORT.md 041e9de70e Migrate 210 tests to UnitTests.Parallelizable, add CreateFakeDriver helper, prove View.Draw() works in parallel tests, and provide comprehensive performance analysis (#4297) пре 1 месец
TEXT_TESTS_ANALYSIS.md 041e9de70e Migrate 210 tests to UnitTests.Parallelizable, add CreateFakeDriver helper, prove View.Draw() works in parallel tests, and provide comprehensive performance analysis (#4297) пре 1 месец

README.md

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.