1 write to LastArguments
Aspire.Cli.Tests (1)
TestServices\TestProcessExecutionFactory.cs (1)
80LastArguments = args;
6 references to LastArguments
Aspire.Cli.Tests (6)
Commands\RunCommandTests.cs (2)
1307var childArguments = Assert.IsAssignableFrom<IEnumerable<string>>(processFactory.LastArguments); 1399AssertDetachedChildArguments(command, processFactory.LastArguments, "--no-build", expectedAppHostArguments);
Commands\StartCommandTests.cs (1)
259AssertDetachedChildArguments(command, processFactory.LastArguments, "--no-build", expectedAppHostArguments);
ProfileCaptureServiceTests.cs (1)
56var arguments = processFactory.LastArguments;
Telemetry\InternalMicrosoftDetectorTests.cs (2)
661var arguments = Assert.IsType<string[]>(processFactory.LastArguments); 883Assert.Equal(["platform", "-s"], Assert.IsType<string[]>(processFactory.LastArguments));