Tig 93ec92e6a0 Refactor Application constants and remove unused field il y a 1 mois
..
Benchmarks cab22566ea Fixes #4107 - Revamps Terminal.Gui's `namespace` (#4109) il y a 6 mois
IntegrationTests 1eb5a4e1b9 Fixes #4305 - 'FileDialog` TreeView (#4306) il y a 1 mois
StressTests 1046b47be7 Fixes #4325. ApplicationImpl.Invoke is sometimes running on UI thread when Application.Top is null (#4339) il y a 1 mois
TerminalGuiFluentTesting 93ec92e6a0 Refactor Application constants and remove unused field il y a 1 mois
TerminalGuiFluentTestingXunit 3a645191db Fixes #4170 - Added analyzer that flags when user does not have `Handled=true` (#4182) il y a 5 mois
TerminalGuiFluentTestingXunit.Generator 51dda7e69f Fixes #3947 Adds Fake driver and fixes fluent tests (iteration-zero) (#4225) il y a 3 mois
UnitTests 93ec92e6a0 Refactor Application constants and remove unused field il y a 1 mois
UnitTestsParallelizable 93ec92e6a0 Refactor Application constants and remove unused field il y a 1 mois
CATEGORY_A_MIGRATION_SUMMARY.md ed64f5773e Fixes #4282 - Migrate tests from UnitTests to UnitTests.Parallelizable (67 tests migrated + comprehensive documentation) (#4293) il y a 1 mois
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) il y a 1 mois
README.md b0f32811eb Fixes #3930 - Splits tests to `Tests/UnitTests`, `Tests/IntegrationTests`, `Tests/StressTests` (#3954) il y a 9 mois
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) il y a 1 mois
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) il y a 1 mois

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.