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