A feature of the dotnet AutoMapper is AssertConfigurationIsValid() which will barf if a new property was added that was not able to be automagically mapped.
I'm trying to find a way to assert the same here. A unit test that will fail if there is a destination or source property that doesn't have an operation.
How might I go about this? Am I missing something obvious already?
A feature of the dotnet AutoMapper is
AssertConfigurationIsValid()which will barf if a new property was added that was not able to be automagically mapped.I'm trying to find a way to assert the same here. A unit test that will fail if there is a destination or source property that doesn't have an operation.
How might I go about this? Am I missing something obvious already?