Updated BordersComparison partially

This commit is contained in:
Tigger Kindel
2023-03-19 18:40:22 -06:00
parent 280d2f9d94
commit 5d3b7f306f
8 changed files with 49 additions and 66 deletions

View File

@@ -22,7 +22,7 @@ namespace Terminal.Gui.CoreTests {
Assert.Equal (Thickness.Empty, b.BorderThickness);
Assert.Equal (Color.Black, b.ForgroundColor);
Assert.Equal (Color.Black, b.BackgroundColor);
Assert.Equal (Thickness.Empty, b.Padding);
Assert.Equal (Thickness.Empty, b.PaddingThickness);
Assert.False (b.Effect3D);
Assert.Equal (new Point (1, 1), b.Effect3DOffset);
Assert.Null (b.Effect3DBrush);
@@ -570,7 +570,7 @@ namespace Terminal.Gui.CoreTests {
Border = new Border () {
BorderStyle = BorderStyle.Single,
DrawMarginFrame = true,
Padding = new Thickness (1),
PaddingThickness = new Thickness (1),
ForgroundColor = Color.White
}
};