This commit is contained in:
tznind
2025-03-20 08:39:46 +00:00
committed by Tig
parent bacac70588
commit 266f03daef
5 changed files with 105 additions and 22 deletions

View File

@@ -7,10 +7,17 @@ using System.Threading.Tasks;
namespace TerminalGuiFluentTesting;
/// <summary>
/// Which v2 driver should be used
/// 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
}