Files
Terminal.Gui/Tests/TerminalGuiFluentTesting/TestDriver.cs

28 lines
641 B
C#

namespace TerminalGuiFluentTesting;
/// <summary>
/// Which driver simulation should be used for testing
/// </summary>
public enum TestDriver
{
/// <summary>
/// The Windows driver with simulation I/O but core driver classes
/// </summary>
Windows,
/// <summary>
/// The DotNet driver with simulation I/O but core driver classes
/// </summary>
DotNet,
/// <summary>
/// The Unix driver with simulation I/O but core driver classes
/// </summary>
Unix,
/// <summary>
/// The Fake driver that does not use any core driver classes
/// </summary>
Fake
}