mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* Refactored test namespaces. Moved some tests that were in wrong project. Code cleanup * Parrallel -> Parallel
18 lines
407 B
C#
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.
|
|
}
|
|
|
|
}
|