public async Task  ShouldFetchSuggestionsFromGoogle()
        {
            ISuggestion obj = new SuggestionFetcher();

            var res = await obj.GetSuggestions("cars");

            res.ShouldNotBeNull();
            res.Count.ShouldBeGreaterThan(0);
            res.First().ShouldNotBeNull();
            res.First().ShouldNotBe("");
        }