Added simple Arragement unit test

This commit is contained in:
Tig Kindel
2024-03-04 11:09:39 -07:00
parent e7bd7bd8fa
commit efaaec41c2
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System.Text;
using Xunit.Abstractions;
namespace Terminal.Gui.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.
}
}