In one of our Legacy project we have a class as below:
public class DataView : ScElement, IInternalDefinition, IIntertab
also contains , static constructor , static properties and static methods along with instance methods and properties.
what are some possible ways to mock this class ? Is writing a wrapper possible as this class follows Multiple inheritance?
Tried using Moq and NSubstitute mocking frameworks but could not identify how to also looked at writing a wrapper but is confused.