using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TerminalGuiFluentTesting;
///
/// Which driver simulation should be used for testing
///
public enum TestDriver
{
///
/// The Windows driver with simulation I/O but core driver classes
///
Windows,
///
/// The DotNet driver with simulation I/O but core driver classes
///
DotNet
}