DriverColorTests.cs 404 B

12345678910111213141516171819
  1. // Alias Console to MockConsole so we don't accidentally use Console
  2. using UnitTests;
  3. namespace UnitTests_Parallelizable.DriverTests;
  4. public class DriverColorTests : FakeDriverBase
  5. {
  6. [Fact]
  7. public void Force16Colors_Sets ()
  8. {
  9. IDriver driver = CreateFakeDriver ();
  10. driver.Force16Colors = true;
  11. Assert.True (driver.Force16Colors);
  12. driver.End ();
  13. }
  14. }