7 writes to FileName
Microsoft.TestPlatform.CrossPlatEngine (1)
Adapter\FrameworkHandle.cs (1)
92FileName = filePath,
Microsoft.TestPlatform.TestHostRuntimeProvider (6)
Hosting\DefaultTestHostManager.cs (1)
246FileName = launcherPath,
Hosting\DotnetTestHostManager.cs (5)
330startInfo.FileName = fullExePath; 360startInfo.FileName = testHostExeNugetPath; 474startInfo.FileName = _dotnetHostPath; 481startInfo.FileName = currentProcessPath; 506startInfo.FileName = muxerPath;
8 references to FileName
Microsoft.TestPlatform.CommunicationUtilities (1)
EventHandlers\TestRunEventsHandler.cs (1)
97EqtTrace.Info("Sending LaunchProcessWithDebuggerAttached on additional test process: {0}", testProcessStartInfo?.FileName);
Microsoft.TestPlatform.TestHostRuntimeProvider (7)
Hosting\DefaultTestHostManager.cs (3)
530EqtTrace.Verbose("Launching default test Host Process {0} with arguments {1}", testHostStartInfo.FileName, testHostStartInfo.Arguments); 542EqtTrace.Verbose("DefaultTestHostManager: Starting process '{0}' with command line '{1}', CreateNoWindow={2}", testHostStartInfo.FileName, testHostStartInfo.Arguments, _createNoNewWindow); 546testHostStartInfo.FileName!,
Hosting\DotnetTestHostManager.cs (4)
514EqtTrace.Verbose("DotnetTestHostmanager: Full path of host exe is {0}", startInfo.FileName); 569var testhostDllPath = Path.ChangeExtension(startInfo.FileName, ".dll"); 853EqtTrace.Verbose($"DotnetTestHostManager: Starting process '{0}' with command line '{1}' and DOTNET environment: {string.Join(", ", dotnetEnvVars)} ", testHostStartInfo.FileName, testHostStartInfo.Arguments); 861testHostStartInfo.FileName!,