public BaseMockRepository()
        {
            _client = new ServiceClient();

            if (_mapper == null)
            {
                var config = new MapperConfiguration(cfg => cfg.AddProfile <EntitiesToMockMappingProfile>());
                _mapper = config.CreateMapper();
            }
        }
예제 #2
0
 public static void StartUp(TestContext context)
 {
     client = new ServiceClient();
 }