1
0
This repository has been archived on 2025-10-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
MapperSourceGenSample/tests/MapperSourceGen.SourceGenerator.Tests/MapperGeneratorFacts.cs
2025-07-21 13:49:26 -04:00

21 lines
621 B
C#

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());
}
}