| 12345678910111213141516171819 |
- // Alias Console to MockConsole so we don't accidentally use Console
- using UnitTests;
- namespace DriverTests;
- public class DriverColorTests : FakeDriverBase
- {
- [Fact]
- public void Force16Colors_Sets ()
- {
- IDriver driver = CreateFakeDriver ();
- driver.Force16Colors = true;
- Assert.True (driver.Force16Colors);
- driver.Dispose ();
- }
- }
|