We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0990f3f commit b5d5e33Copy full SHA for b5d5e33
2 files changed
src/Benchmarks/Benchmarks.csproj
@@ -13,5 +13,6 @@
13
<ProjectReference Include="..\Verify\Verify.csproj" />
14
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" />
15
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
16
+ <Compile Include="..\Verify.Tests\PatternScrubberRunner.cs" />
17
</ItemGroup>
18
</Project>
…ation/Scrubbers/PatternScrubberRunner.cs src/Verify.Tests/PatternScrubberRunner.cssrc/Verify/Serialization/Scrubbers/PatternScrubberRunner.cs renamed to src/Verify.Tests/PatternScrubberRunner.cs
@@ -1,5 +1,9 @@
1
+using System.Buffers;
2
+
3
namespace VerifyTests;
4
5
+// Test-only helper: invokes the pattern walker against a single scrubber
6
+// without going through the full ScrubberPipeline.
7
static class PatternScrubberRunner
8
{
9
static readonly Dictionary<string, object> emptyContext = new();
0 commit comments