1
0

chore: initial commit

Signed-off-by: Alan Brault <alan.brault@visus.io>
This commit is contained in:
2025-07-21 13:43:39 -04:00
commit fb4bf1aaee
37 changed files with 2645 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
namespace MapperSourceGen.SourceGenerator.Tests;
using System.Runtime.CompilerServices;
using VerifyTests.DiffPlex;
public static class ModuleInitializer
{
#pragma warning disable CA2255
[ModuleInitializer]
#pragma warning restore CA2255
public static void Initialize()
{
DerivePathInfo((file, _, type, method) => new PathInfo(Path.Combine(Path.GetDirectoryName(file)!, "ref"), type.Name, method.Name));
VerifySourceGenerators.Initialize();
VerifyDiffPlex.Initialize(OutputType.Compact);
}
}