3 instantiations of TestCliHostEnvironment
Aspire.Cli.Tests (3)
ProgramTests.cs (1)
51
services.AddSingleton<ICliHostEnvironment>(new
TestCliHostEnvironment
(supportsAnsi: false, supportsInteractiveOutput: false));
TestHelpers.cs (2)
12
return new
TestCliHostEnvironment
(supportsInteractiveInput: true, supportsInteractiveOutput: true, supportsAnsi: true);
17
return new
TestCliHostEnvironment
(supportsInteractiveInput: false, supportsInteractiveOutput: false, supportsAnsi: false);