예제 #1
0
 public async Task ODataQueryFilter(string requestParametrs)
 {
     //If the search engine will be changed to handle the types of requests passed as inputs; the test inputs need to be changed.
     var request = UrlHelper.V2FeedRootUrl + requestParametrs;
     await Assert.ThrowsAsync <WebException>(async() =>
     {
         using (await _odataHelper.SendRequest(request))
         {
         }
     });
 }