public async Task MapDictionary_From_Sheet()
        {
            SheetCache sheetCache = new SheetCache(_spreadsheetRepository);
            Dictionary <string, string> dictionary = await sheetCache.GetDictionary("Dictionary");

            dictionary.Should().BeEquivalentTo(new Dictionary <string, string>()
            {
                { "fizz", "buzz" },
                { "foo", "bar" }
            });
        }