Commands\PublishCommandPromptingIntegrationTests.cs (6)
128promptBackchannel.AddPrompt("choice-prompt-1", "Deployment Region", InputTypes.Choice, "Select region:", isRequired: true, options: options);
156Assert.Equal(InputTypes.Choice, receivedPrompt.Inputs[0].InputType);
342promptBackchannel.AddPrompt("choice-prompt-1", "Environment", InputTypes.Choice, "Select environment:", isRequired: true,
387Assert.Equal(InputTypes.Choice, choicePrompt.Inputs[0].InputType);
420new("environment", "Environment", InputTypes.Choice, true,
472Assert.Equal(InputTypes.Choice, receivedPrompt.Inputs[2].InputType);