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 90d7bdcd21
37 changed files with 2647 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
namespace MapperSourceGen.SourceGenerator.Tests;
public sealed class MapperGeneratorFacts
{
[Fact]
public Task Should_Emit_Dto_And_Mapper()
{
const string source = """
namespace MapperSourceGen.SourceGenerator.Tests;
[Mapper]
partial class MyEntity
{
public int Id { get; set; }
}
""";
return Fixture.VerifyGenerateSourcesAsync(source, new MapperGenerator());
}
}