1 write to _testResultsDirPath
Microsoft.VisualStudio.TestPlatform.Extensions.TestIds.TestLogger (1)
TestIdsLogger.cs (1)
105
_testResultsDirPath
= testResultsDirPath;
5 references to _testResultsDirPath
Microsoft.VisualStudio.TestPlatform.Extensions.TestIds.TestLogger (5)
TestIdsLogger.cs (5)
283
:
_testResultsDirPath
?? string.Empty;
402
TPDebug.Assert(
_testResultsDirPath
is not null, "Initialize must be called before this method.");
412
return Path.IsPathRooted(logFileNameValue) ? logFileNameValue! : Path.Combine(
_testResultsDirPath
!, logFileNameValue!);
419
Directory.CreateDirectory(
_testResultsDirPath
!);
425
string claimed = ReserveNextAvailableFilePath(
_testResultsDirPath
!, GetDefaultReportFileName(), out bool claimSucceeded);