// Note: This is actually an integration test between the LibGuideController and the LibGuideService
        public void Render_server_libguide_item()
        {
            var expectedText = string.Format("<div id='api_box_iid{0}_bid{1}'><div>Hello World</div></div>", _account, _item);

            _appSettingsService.LibGuideSource.Returns(LibGuideSource.Server);

            _controller.WithCallTo(c => c.Index(_account, _item)).ShouldRenderContentResult(expectedText);
            _simpleWebRequestService.Received().GetResponseText(Arg.Any <string>());
        }