Commands\PublishCommandPromptingIntegrationTests.cs (6)
176promptBackchannel.AddPrompt("bool-prompt-1", "Enable Verbose Logging", InputTypes.Boolean, "Enable verbose logging?", isRequired: false);
204Assert.Equal(InputTypes.Boolean, receivedPrompt.Inputs[0].InputType);
276promptBackchannel.AddPrompt("bool-prompt-1", "Create Backup", InputTypes.Boolean, "Create backup?", isRequired: false);
319Assert.Equal(InputTypes.Boolean, boolPrompt.Inputs[0].InputType);
353new("Enable Logging", InputTypes.Boolean, false, null)
404Assert.Equal(InputTypes.Boolean, receivedPrompt.Inputs[3].InputType);