public MunroControllerTest()
        {
            var dataContext = new MunroDataContext();
            var service     = new MunroService(dataContext, MockAutoMapper.CreateMockMapper());

            controller = new MunrosController(service);
        }
Example #2
0
 public MunroServiceTest()
 {
     testMapper = MockAutoMapper.CreateMockMapper();
 }