public async Task ShouldThrowExceptionWhenNextPageIsNotAviable()
 {
     await _service.GetPlacesAsync("New York").ContinueWith((t) =>
     {
         Assert.ThrowsAsync <InvalidOperationException>(async() =>
         {
             await _service.LoadMorePlacesAsync();
         });
     });
 }