Tig b061aacf18 Simplify the `Screen` property in `ApplicationImpl` by removing the `_screen` field and its locking mechanism. The getter now directly retrieves the screen size from the `Driver` or defaults to `2048x2048`. The setter now calls `Driver?.SetScreenSize` to update the screen size, eliminating the need for the `ResetScreen` method. 1 săptămână în urmă
..
Benchmarks d53fcd7485 Fixes #4374 - Nukes all (?) legacy Driver and Application stuff; revamps tests (#4376) 1 lună în urmă
IntegrationTests a84b2c4896 Fixes #4419, #4148, #4408 - Toplevel is GONE - Replaced by Runnable (#4422) 2 săptămâni în urmă
StressTests 6d53276be2 Fixes #4289 - Simplify Drawing/Color: unify named color handling under StandardColor and remove layered resolvers (#4432) 1 săptămână în urmă
TerminalGuiFluentTesting 0f72cf8a74 Fixes #4425 - `ApplicationImpl` internal (#4426) 2 săptămâni în urmă
TerminalGuiFluentTestingXunit 3a645191db Fixes #4170 - Added analyzer that flags when user does not have `Handled=true` (#4182) 5 luni în urmă
TerminalGuiFluentTestingXunit.Generator 55b45d40d9 Fixed warnings caused by generators. Pushing to v2_develop as a test. 1 lună în urmă
UnitTests e192b5622d Updated the `OnDrawingContent` method across multiple classes to accept a `DrawContext? context` parameter, replacing the parameterless version. This change standardizes the drawing API and enables context-aware drawing operations. 1 săptămână în urmă
UnitTestsParallelizable b061aacf18 Simplify the `Screen` property in `ApplicationImpl` by removing the `_screen` field and its locking mechanism. The getter now directly retrieves the screen size from the `Driver` or defaults to `2048x2048`. The setter now calls `Driver?.SetScreenSize` to update the screen size, eliminating the need for the `ResetScreen` method. 1 săptămână în urmă
CATEGORY_A_MIGRATION_SUMMARY.md ed64f5773e Fixes #4282 - Migrate tests from UnitTests to UnitTests.Parallelizable (67 tests migrated + comprehensive documentation) (#4293) 1 lună în urmă
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 lună în urmă
README.md b0f32811eb Fixes #3930 - Splits tests to `Tests/UnitTests`, `Tests/IntegrationTests`, `Tests/StressTests` (#3954) 9 luni în urmă
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 lună în urmă
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 lună în urmă
U d53fcd7485 Fixes #4374 - Nukes all (?) legacy Driver and Application stuff; revamps tests (#4376) 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.