5 writes to this_TestCaseBaselinesDir
dotnet-svcutil-lib.Tests (5)
GlobalToolTests.cs (2)
120this_TestCaseBaselinesDir = Path.Combine(this_TestGroupBaselinesDir, testCaseName); 148this_TestCaseBaselinesDir = Path.Combine(this_TestGroupBaselinesDir, testClientFolder);
TestInit.cs (3)
266this_TestCaseBaselinesDir = Path.Combine(this_TestGroupBaselinesDir, testCaseName); 270this_TestCaseBaselinesDir = linuxBaselinePath; 356this_TestCaseBaselinesDir = linuxBaselinePath;
10 references to this_TestCaseBaselinesDir
dotnet-svcutil-lib.Tests (10)
GlobalToolTests.cs (2)
121Directory.CreateDirectory(this_TestCaseBaselinesDir); 149Directory.CreateDirectory(this_TestCaseBaselinesDir);
TestInit.cs (8)
267var linuxBaselinePath = Path.Combine(this_TestCaseBaselinesDir, "Linux"); 272Directory.CreateDirectory(this_TestCaseBaselinesDir); 278Assert.True(Directory.Exists(this_TestCaseBaselinesDir), $"{nameof(this_TestCaseBaselinesDir)} is not initialized!"); 353var linuxBaselinePath = Path.Combine(this_TestCaseBaselinesDir, "Linux"); 362var baselineFiles = Directory.GetFiles(this_TestCaseBaselinesDir, "*", SearchOption.AllDirectories) 363.Where(f => !PathHelper.PathHasFolder(f, excludeDirs, this_TestCaseBaselinesDir)).Where(f => !f.ToLower().EndsWith("nuget.config")).ToList(); 526WriteLog("Baslines dir: " + this_TestCaseBaselinesDir);