Hi
You can run the unit tests. Have you received the failed tests.
The package nMolecules.DDD is referenced in the project.
Quote:
public static async Task VerifyAnalyzerAsync(string source, params DiagnosticResult[] expected)
{
var test = new CSharpTest
{
TestCode = source,
TestState =
{
AdditionalReferences = { "nMolecules.DDD.dll" }
}
};
test.ExpectedDiagnostics.AddRange(expected);
await test.RunAsync(CancellationToken.None);
}