static IoCContainer InitContainerForIntegrationTests()
            {
                var container = new IoCContainer();

                container.Add(typeof(IDatabase), typeof(RealDatabase));
                container.Add(typeof(IThirdPartyService), typeof(FakeThirdPartyService));
                return(container);
            }