Adds ViewportSettings.Transparent (#3886)

This commit is contained in:
Tig
2025-03-01 15:22:23 -07:00
committed by GitHub
parent cae1d6c47e
commit 98f70b2632
41 changed files with 5589 additions and 3992 deletions

View File

@@ -1299,4 +1299,19 @@ w ";
pos = TestHelpers.AssertDriverContentsWithFrameAre (expected, output);
}
[Fact]
[SetupFakeDriver]
public void SetText_RendersCorrectly ()
{
View view;
var text = "test";
view = new Label { Text = text };
view.BeginInit ();
view.EndInit ();
view.Draw ();
TestHelpers.AssertDriverContentsWithFrameAre (text, output);
}
}