mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Added simple Arragement unit test
This commit is contained in:
17
UnitTests/View/ArrangementTests.cs
Normal file
17
UnitTests/View/ArrangementTests.cs
Normal 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.
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user