public void ThenIGetUserListInTheGivenPage(Table table)
        {
            var userdetails = table.CreateInstance <UserInformation>();

            RESTOperations.AssertResponseContainsExpectedResult(restResponse, userdetails.page);
        }
Esempio n. 2
0
        public void ThenTheServerReturnsTheResponseWithTheCityInformation(Table table)
        {
            var cityinfo = table.CreateInstance <CityInformation>();

            RESTOperations.AssertResponseContainsExpectedResult(restResponse, cityinfo.city);
        }