This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AutoMockingContext<TUnderTest> where TUnderTest : class | |
{ | |
protected static MoqAutoMocker<TUnderTest> autoMocker; | |
Establish automocking = () => autoMocker = new MoqAutoMocker<TUnderTest>(); | |
protected static Mock<TInterface> Stub<TInterface>() where TInterface : class |