Files
Terminal.Gui/Tests/UnitTestsParallelizable/View/Adornment/ToScreenTests.cs
Tig fdeaa8331b Fixes #4298 - Updates test namespaces (#4299)
* Refactored test namespaces.
Moved some tests that were in wrong project.
Code cleanup

* Parrallel -> Parallel
2025-10-20 14:14:38 -06:00

15 lines
453 B
C#

using Xunit.Abstractions;
namespace UnitTests_Parallelizable.ViewTests;
/// <summary>
/// Test the <see cref="Adornment.FrameToScreen"/> and <see cref="View.ViewportToScreen"/> methods.
/// DOES NOT TEST View.xxxToScreen methods. Those are in ./View/Layout/ToScreenTests.cs
/// </summary>
/// <param name="output"></param>
public class AdornmentToScreenTests (ITestOutputHelper output)
{
private readonly ITestOutputHelper _output = output;
}