mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
24 lines
501 B
C#
24 lines
501 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TerminalGuiFluentTesting;
|
|
|
|
/// <summary>
|
|
/// Which v2 driver simulation should be used
|
|
/// </summary>
|
|
public enum V2TestDriver
|
|
{
|
|
/// <summary>
|
|
/// The v2 windows driver with simulation I/O but core driver classes
|
|
/// </summary>
|
|
V2Win,
|
|
|
|
/// <summary>
|
|
/// The v2 net driver with simulation I/O but core driver classes
|
|
/// </summary>
|
|
V2Net
|
|
}
|