Tig ebe2080346 Merge branch 'v2_develop' into copilot/port-parallelizable-unit-tests 1 lună în urmă
..
Benchmarks cab22566ea Fixes #4107 - Revamps Terminal.Gui's `namespace` (#4109) 6 luni în urmă
IntegrationTests 8aec05248d Fixes #4274 - v2win vsdebugconsole issue CM related UnitTest failures (#4287) 1 lună în urmă
StressTests 8aec05248d Fixes #4274 - v2win vsdebugconsole issue CM related UnitTest failures (#4287) 1 lună în urmă
TerminalGuiFluentTesting 2be8397203 Remove legacy drivers, simplify architecture, and reorganize codebase structure (#4270) 2 luni în urmă
TerminalGuiFluentTestingXunit 3a645191db Fixes #4170 - Added analyzer that flags when user does not have `Handled=true` (#4182) 5 luni în urmă
TerminalGuiFluentTestingXunit.Generator 51dda7e69f Fixes #3947 Adds Fake driver and fixes fluent tests (iteration-zero) (#4225) 3 luni în urmă
UnitTests ebe2080346 Merge branch 'v2_develop' into copilot/port-parallelizable-unit-tests 1 lună în urmă
UnitTestsParallelizable a35f09eff0 Merge branch 'v2_develop' into copilot/port-parallelizable-unit-tests 1 lună în urmă
CATEGORY_A_MIGRATION_PLAN.md 027b763cbf Add Category A migration plan with detailed scope assessment 1 lună în urmă
FINAL_MIGRATION_ANALYSIS.md 1577afd647 Add final comprehensive migration analysis and scope assessment 1 lună în urmă
MIGRATION_STATUS.md bfff1c34cf Add comprehensive migration status report 1 lună în urmă
README.md b0f32811eb Fixes #3930 - Splits tests to `Tests/UnitTests`, `Tests/IntegrationTests`, `Tests/StressTests` (#3954) 9 luni în urmă
TEST_PARALLELIZATION_ANALYSIS.md af1a1fda2b Final analysis update with conclusions and recommendations 1 lună în urmă

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.