V2TestDriver.cs 501 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TerminalGuiFluentTesting;
  7. /// <summary>
  8. /// Which v2 driver simulation should be used
  9. /// </summary>
  10. public enum V2TestDriver
  11. {
  12. /// <summary>
  13. /// The v2 windows driver with simulation I/O but core driver classes
  14. /// </summary>
  15. V2Win,
  16. /// <summary>
  17. /// The v2 net driver with simulation I/O but core driver classes
  18. /// </summary>
  19. V2Net
  20. }