mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
18 lines
395 B
C#
18 lines
395 B
C#
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.
|
|
}
|
|
|
|
}
|