Refactored Application into smaller files.

Made Application #nullable enable
This commit is contained in:
Tig
2024-07-22 16:52:02 -06:00
parent 14d8bf5ba3
commit 44ce74a5c0
71 changed files with 1449 additions and 1441 deletions

View File

@@ -451,7 +451,7 @@ ssb
[SetupFakeDriver]
public void FillRemaining_True_False ()
{
((FakeDriver)Application.Driver).SetBufferSize (22, 5);
((FakeDriver)Application.Driver!).SetBufferSize (22, 5);
Attribute [] attrs =
{
@@ -6041,7 +6041,7 @@ B")]
Text = text
};
Application.Driver.FillRect (new Rectangle (0, 0, 7, 7), (Rune)'*');
Application.Driver?.FillRect (new Rectangle (0, 0, 7, 7), (Rune)'*');
tf.Draw (new Rectangle (0, 0, 7, 7), Attribute.Default, Attribute.Default);
TestHelpers.AssertDriverContentsWithFrameAre (expectedText, _output);
}