14 references to GetProcessStartInfo
dotnet.Tests (14)
CommandTests\MSBuild\GivenDotnetVsTestForwardingApp.cs (2)
14
.
GetProcessStartInfo
().Arguments.Should().EndWith("vstest.console.dll");
27
.
GetProcessStartInfo
().Arguments.Should().EndWith("vstest.custom.console.dll");
CommandTests\MSBuild\GivenForwardingApp.cs (9)
12
.
GetProcessStartInfo
().FileName.Should().EndWith("dotnet.exe");
19
.
GetProcessStartInfo
().FileName.Should().EndWith("dotnet");
26
.
GetProcessStartInfo
().Arguments.Should().Be("exec <apppath> one two three");
33
.
GetProcessStartInfo
().Arguments.Should().Be("exec --depsfile <deps-file> <apppath> <arg>");
40
.
GetProcessStartInfo
().Arguments.Should().Be("exec --runtimeconfig <runtime-config> <apppath> <arg>");
47
.
GetProcessStartInfo
().Arguments.Should().Be("exec --additionalprobingpath <additionalprobingpath> <apppath> <arg>");
54
.
GetProcessStartInfo
().Arguments.Should().Be("exec <apppath> \"a b c\"");
61
.
GetProcessStartInfo
().Arguments.Should().Be("exec <apppath> a\\\"b\\\"c");
72
.
GetProcessStartInfo
();
NuGetSignatureVerificationEnablerTests.cs (3)
67
VerifyEnvironmentVariable(forwardingApp.
GetProcessStartInfo
(), bool.TrueString);
81
VerifyEnvironmentVariable(forwardingApp.
GetProcessStartInfo
(), bool.FalseString);
122
VerifyNoEnvironmentVariable(forwardingApp.
GetProcessStartInfo
());