Copilot e352dde696 Fixes #4151, #4152. Remove LineView class and replace all usages with Line (#4268) 2 luni în urmă
..
Benchmarks cab22566ea Fixes #4107 - Revamps Terminal.Gui's `namespace` (#4109) 6 luni în urmă
IntegrationTests 51dda7e69f Fixes #3947 Adds Fake driver and fixes fluent tests (iteration-zero) (#4225) 3 luni în urmă
StressTests 764a804ddd Fixes #3209 - Formalize Cancellable Work Pattern and add helpers (#4092) 6 luni în urmă
TerminalGuiFluentTesting 18b602e980 Fixes #4243 - `ConsoleDriverFacade.CreateClipboard` now honors `FakeDriver.FakeBehaviors.UseFakeClipboard` (#4244) 3 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 e352dde696 Fixes #4151, #4152. Remove LineView class and replace all usages with Line (#4268) 2 luni în urmă
UnitTestsParallelizable fc9c40c2a0 Fixes #4150 - Finish implementing `Line` View (#4260) 2 luni în urmă
README.md b0f32811eb Fixes #3930 - Splits tests to `Tests/UnitTests`, `Tests/IntegrationTests`, `Tests/StressTests` (#3954) 9 luni î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.