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,
///
/// The Unix driver with simulation I/O but core driver classes
///
Unix,
///
/// The Fake driver that does not use any core driver classes
///
Fake
}