Unit tests

This commit is contained in:
Tigger Kindel
2023-08-11 12:57:15 -06:00
committed by Tig
parent a23a33f20c
commit 33befa249e
2 changed files with 17 additions and 11 deletions

View File

@@ -90,11 +90,11 @@ namespace Terminal.Gui.DriverTests {
// Shutdown must be called to safely clean up Application if Init has been called
Application.Shutdown ();
}
[Theory]
[InlineData (typeof (FakeDriver), false)]
[InlineData (typeof (FakeDriver), true)]
[InlineData (typeof (NetDriver), false)]
[InlineData (typeof (CursesDriver), false)]
[InlineData (typeof (CursesDriver), true)]
[InlineData (typeof (WindowsDriver), false)]
public void Force16Colors_Sets (Type driverType, bool expectedSetting)
{