public void Dispose() { mockRepo = null; realProfile = null; configuration = null; mapper = null; }
public FaqControllerTests() { mockRepo = new Mock <IFaqRepo>(); realProfile = new FaqProfile(); configuration = new MapperConfiguration(cfg => cfg.AddProfile(realProfile)); mapper = new Mapper(configuration); }