ArrangementTests.cs 395 B

1234567891011121314151617
  1. using System.Text;
  2. using Xunit.Abstractions;
  3. namespace Terminal.Gui.ViewTests;
  4. public class ArrangementTests (ITestOutputHelper output)
  5. {
  6. private readonly ITestOutputHelper _output = output;
  7. // Test that TopResizable and Movable are mutually exclusive and Movable wins
  8. [Fact]
  9. public void TopResizableAndMovableMutuallyExclusive ()
  10. {
  11. // TODO: Write test.
  12. }
  13. }