public void GetXDownloadOptionsConfiguration_NoOwinContext_ReturnsSystemWebConfig() { var config = new SimpleBooleanConfiguration(); _systemWebContext.XDownloadOptions = config; var result = _contextHelper.GetXDownloadOptionsConfiguration(_mockContext); Assert.Same(config, result); }
public void GetXDownloadOptionsConfiguration_ReturnsContextConfig() { var config = new SimpleBooleanConfiguration(); _nwContext.XDownloadOptions = config; var result = _contextHelper.GetXDownloadOptionsConfiguration(_mockContext); Assert.AreSame(config, result); }