public void Get_NotDictionaryRootItem_ThrowConfigurationErrorException(Db db, DictionaryRepository repository)
        {
            //Arrange
            var siteContext = new FakeSiteContext(new StringDictionary()
            {
                ["dictionaryPath"] = "/sitecore/content/dictionaryPath",
                ["database"]       = "master"
            });

            //Assert
            using (new SiteContextSwitcher(siteContext))
            {
                repository.Invoking(x => x.Get(siteContext)).Should().Throw <ConfigurationErrorsException>();
            }
        }
 public void Get_NotConfiguredPath_ThrowConfigurationErrorException(FakeSiteContext siteContext, DictionaryRepository repository)
 {
     repository.Invoking(x => x.Get(siteContext)).Should().Throw <ConfigurationErrorsException>();
 }