public ConnectionConfigurationsFactoryTests()
 {
     this.context         = Substitute.For <SpContextBase>();
     this.sitecoreFactory = Substitute.For <SitecoreFactory>();
     this.factory         = new ConnectionConfigurationsFactory(this.sitecoreFactory);
 }
        public ConnectionConfigurationsFactory([NotNull] SitecoreFactory sitecoreFactory)
        {
            Assert.ArgumentNotNull(sitecoreFactory, "sitecoreFactory");

            this.sitecoreFactory = sitecoreFactory;
        }