Exemplo n.º 1
0
        public void GetSpecificLocationBasedOnIdTest()
        {
            int locationId = 5;

            LocationAndClassesRestCalls locationAndClassesRestCalls = new LocationAndClassesRestCalls();

            IRestResponse response = locationAndClassesRestCalls.GetSpecificLocationBasedOnId(locationId);

            Console.WriteLine(response.Content);

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