mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 17:02:51 +08:00
24 lines
630 B
C#
24 lines
630 B
C#
namespace Spectre.Console.Tests.Unit;
|
|
|
|
public partial class AnsiConsoleTests
|
|
{
|
|
public sealed class Prompt
|
|
{
|
|
[Theory]
|
|
[InlineData(true, true)]
|
|
[InlineData(false, false)]
|
|
public void Should_Return_Default_Value_If_Nothing_Is_Entered(bool expected, bool defaultValue)
|
|
{
|
|
// Given
|
|
var console = new TestConsole().EmitAnsiSequences();
|
|
console.Input.PushKey(ConsoleKey.Enter);
|
|
|
|
// When
|
|
var result = console.Confirm("Want some prompt?", defaultValue);
|
|
|
|
// Then
|
|
result.ShouldBe(expected);
|
|
}
|
|
}
|
|
}
|