Ejemplo n.º 1
0
        public void SearchForLocationBasedOnSearchText()
        {
            string searchText = "in San Luis Obispo";

            LocationAndClassesRestCalls locationAndClassesRestCalls = new LocationAndClassesRestCalls();

            IRestResponse response = locationAndClassesRestCalls.SearchForLocationBasedOnSearchText(searchText);

            Console.WriteLine(response.Content);

            Assert.AreNotEqual(0, response.ContentLength);
        }