Commands\PublishCommandPromptingIntegrationTests.cs (6)
175promptBackchannel.AddPrompt("bool-prompt-1", "Enable Verbose Logging", InputTypes.Boolean, "Enable verbose logging?", isRequired: false);
203Assert.Equal(InputTypes.Boolean, receivedPrompt.Inputs[0].InputType);
349promptBackchannel.AddPrompt("bool-prompt-1", "Create Backup", InputTypes.Boolean, "Create backup?", isRequired: false);
392Assert.Equal(InputTypes.Boolean, boolPrompt.Inputs[0].InputType);
426new("enable-logging", "Enable Logging", InputTypes.Boolean, false, null)
477Assert.Equal(InputTypes.Boolean, receivedPrompt.Inputs[3].InputType);