mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
updated tests for element changes
This commit is contained in:
parent
f0cc4b0c80
commit
87d04e1abd
1 changed files with 9 additions and 5 deletions
|
@ -32,11 +32,15 @@ namespace Tests {
|
||||||
invalidPanel.AddChild(new Paragraph(Anchor.AutoRight, 1, "This is some test text!", true));
|
invalidPanel.AddChild(new Paragraph(Anchor.AutoRight, 1, "This is some test text!", true));
|
||||||
invalidPanel.AddChild(new VerticalSpace(1));
|
invalidPanel.AddChild(new VerticalSpace(1));
|
||||||
Assert.Throws<ArithmeticException>(() => this.AddAndUpdate(invalidPanel));
|
Assert.Throws<ArithmeticException>(() => this.AddAndUpdate(invalidPanel));
|
||||||
|
}
|
||||||
|
|
||||||
invalidPanel = new Panel(Anchor.Center, Vector2.Zero, Vector2.Zero, true);
|
[Test]
|
||||||
invalidPanel.AddChild(new Group(Anchor.CenterRight, new Vector2(10), false));
|
public void TestOddlyAlignedPanel() {
|
||||||
invalidPanel.AddChild(new Group(Anchor.BottomLeft, new Vector2(10), false));
|
var oddPanel = new Panel(Anchor.Center, Vector2.One, Vector2.Zero, true) {SetWidthBasedOnChildren = true};
|
||||||
Assert.Throws<InvalidOperationException>(() => this.AddAndUpdate(invalidPanel));
|
oddPanel.AddChild(new Group(Anchor.TopCenter, new Vector2(100), false));
|
||||||
|
oddPanel.AddChild(new Group(Anchor.AutoRight, new Vector2(120), false));
|
||||||
|
this.AddAndUpdate(oddPanel);
|
||||||
|
Assert.AreEqual(120 + 10, oddPanel.DisplayArea.Width);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
|
Loading…
Reference in a new issue