Files
Terminal.Gui/Tests/UnitTestsParallelizable/View/ArrangementTests.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

18 lines
407 B
C#

using System.Text;
using Xunit.Abstractions;
namespace UnitTests_Parallelizable.ViewTests;
public class ArrangementTests (ITestOutputHelper output)
{
private readonly ITestOutputHelper _output = output;
// Test that TopResizable and Movable are mutually exclusive and Movable wins
[Fact]
public void TopResizableAndMovableMutuallyExclusive ()
{
// TODO: Write test.
}
}