BDisp cd75a20c60 Fixes #4387. Runes should not be used on a cell, but rather should use a single grapheme rendering 1 or 2 columns (#4388) vor 3 Wochen
..
Benchmarks d53fcd7485 Fixes #4374 - Nukes all (?) legacy Driver and Application stuff; revamps tests (#4376) vor 1 Monat
IntegrationTests 726b15dd28 Fixes #4389 - Add comprehensive unit tests for WindowsKeyConverter (#4390) vor 3 Wochen
StressTests c5906c2dc1 #4329—Major Terminal.Gui v2 Architecture Modernization: Application Decoupling, Terminology Improvements, and Nullable Migration (#4338) vor 3 Wochen
TerminalGuiFluentTesting a6258ed398 Updates `IListDataSource.Render` to rename the `start` parameter to `viewportXOffset` (#4392) vor 3 Wochen
TerminalGuiFluentTestingXunit 3a645191db Fixes #4170 - Added analyzer that flags when user does not have `Handled=true` (#4182) vor 5 Monaten
TerminalGuiFluentTestingXunit.Generator 55b45d40d9 Fixed warnings caused by generators. Pushing to v2_develop as a test. vor 1 Monat
UnitTests cd75a20c60 Fixes #4387. Runes should not be used on a cell, but rather should use a single grapheme rendering 1 or 2 columns (#4388) vor 3 Wochen
UnitTestsParallelizable cd75a20c60 Fixes #4387. Runes should not be used on a cell, but rather should use a single grapheme rendering 1 or 2 columns (#4388) vor 3 Wochen
CATEGORY_A_MIGRATION_SUMMARY.md ed64f5773e Fixes #4282 - Migrate tests from UnitTests to UnitTests.Parallelizable (67 tests migrated + comprehensive documentation) (#4293) vor 1 Monat
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) vor 1 Monat
README.md b0f32811eb Fixes #3930 - Splits tests to `Tests/UnitTests`, `Tests/IntegrationTests`, `Tests/StressTests` (#3954) vor 9 Monaten
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) vor 1 Monat
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) vor 1 Monat
U d53fcd7485 Fixes #4374 - Nukes all (?) legacy Driver and Application stuff; revamps tests (#4376) vor 1 Monat

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.