mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
28 lines
641 B
C#
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
|
|
}
|