Exemplo n.º 1
0
        public BrowserController(ISubstituteProxyService substituteProxyService)
        {
            if (substituteProxyService == null)
            {
                throw new ArgumentNullException(nameof(substituteProxyService));
            }

            _substituteProxyService = substituteProxyService;
        }
 public void SetupService()
 {
     FakeSubstituteProxyService = Substitute.For <ISubstituteProxyService>();
 }