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);
275promptBackchannel.AddPrompt("bool-prompt-1", "Create Backup", InputTypes.Boolean, "Create backup?", isRequired: false);
318Assert.Equal(InputTypes.Boolean, boolPrompt.Inputs[0].InputType);
352new("enable-logging", "Enable Logging", InputTypes.Boolean, false, null)
403Assert.Equal(InputTypes.Boolean, receivedPrompt.Inputs[3].InputType);