10 instantiations of InteractionsInputsDialogViewModel
Aspire.Dashboard (1)
Components\Interactions\InteractionsProvider.cs (1)
205var vm = new InteractionsInputsDialogViewModel
Aspire.Dashboard.Components.Tests (9)
Dialogs\InteractionsInputDialogTests.cs (9)
55var viewModel = new InteractionsInputsDialogViewModel 117var viewModel = new InteractionsInputsDialogViewModel 183var viewModel = new InteractionsInputsDialogViewModel 238var viewModel = new InteractionsInputsDialogViewModel 310var viewModel = new InteractionsInputsDialogViewModel 373var viewModel = new InteractionsInputsDialogViewModel 660var viewModel = new InteractionsInputsDialogViewModel 744return new InteractionsInputsDialogViewModel 772return new InteractionsInputsDialogViewModel
25 references to InteractionsInputsDialogViewModel
Aspire.Dashboard (4)
Components\Dialogs\InteractionsInputDialog.razor.cs (2)
23public InteractionsInputsDialogViewModel Content { get; set; } = default!; 38private InteractionsInputsDialogViewModel? _content;
Components\Interactions\InteractionsProvider.cs (2)
205var vm = new InteractionsInputsDialogViewModel 371content is InteractionsInputsDialogViewModel inputsVM)
Aspire.Dashboard.Components.Tests (21)
Dialogs\InteractionsInputDialogTests.cs (17)
55var viewModel = new InteractionsInputsDialogViewModel 117var viewModel = new InteractionsInputsDialogViewModel 183var viewModel = new InteractionsInputsDialogViewModel 238var viewModel = new InteractionsInputsDialogViewModel 310var viewModel = new InteractionsInputsDialogViewModel 373var viewModel = new InteractionsInputsDialogViewModel 451var viewModel = CreateChoiceViewModel(allowCustomChoice: true); 482var viewModel = CreateChoiceViewModel(allowCustomChoice: true, initialValue); 503var viewModel = CreateChoiceViewModel(allowCustomChoice: true, onSubmit: (interaction, updateState) => 528var viewModel = CreateChoiceViewModel(allowCustomChoice: true, onSubmit: (interaction, updateState) => 574var viewModel = CreateChoiceViewModel(allowCustomChoice: true, "red", onSubmit: (interaction, _) => 605var viewModel = CreateChoiceViewModel(allowCustomChoice: true, value); 628var viewModel = CreateChoiceViewModel(allowCustomChoice: false); 660var viewModel = new InteractionsInputsDialogViewModel 715childBuilder.Add(p => p.Content, Assert.IsType<InteractionsInputsDialogViewModel>(content)); 730private static InteractionsInputsDialogViewModel CreateSecretTextViewModel() 753private static InteractionsInputsDialogViewModel CreateChoiceViewModel(bool allowCustomChoice, string value = "", Func<WatchInteractionsResponseUpdate, bool, Task>? onSubmit = null)
Interactions\InteractionsProviderTests.cs (4)
315InteractionsInputsDialogViewModel? vm = null; 322vm = Assert.IsType<InteractionsInputsDialogViewModel>(data); 564InteractionsInputsDialogViewModel? vm = null; 571vm = Assert.IsType<InteractionsInputsDialogViewModel>(data);