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

@@ -25,6 +25,13 @@ public class ToplevelTests
Assert.False (top.IsOverlapped);
}
[Fact]
public void Arrangement_Is_Movable ()
{
var top = new Toplevel ();
Assert.Equal (ViewArrangement.Movable, top.Arrangement);
}
#if BROKE_IN_2927
// BUGBUG: The name of this test does not match what it does.
[Fact]