In .net project there are a lot of entities implemented in c#. The requirement of used library (nservicebus for saga entities) is that all access methods to be declared as public and virtual, otherwise it failes during the deploy process.
It's reasonable to check that an entity's access methods are virtual on unit testing stage, s.a. deploy could take a lot of time (before it would be discovered)
Does anyone knows a good way to check that all public methods in a class are declared virtual in an nunit test?


