예제 #1
0
 public RequestTests()
 {
     http = new RxHttpClient(new HttpClient());
 }
예제 #2
0
 public Application(TheMovieDatabaseConsumer tmdbConsumer, JsonPlaceHolderConsumer jsonPlaceHolderConsumer, RxHttpClient httpClient)
 {
     this.tmdbConsumer            = tmdbConsumer;
     this.jsonPlaceHolderConsumer = jsonPlaceHolderConsumer;
     this.httpClient = httpClient;
 }
예제 #3
0
 public Application(TheMovieDatabaseConsumer tmdbConsumer, RxHttpClient httpClient)
 {
     this.httpClient   = httpClient;
     this.tmdbConsumer = tmdbConsumer;
 }
예제 #4
0
 public PostmanEchoTests()
 {
     http = new RxHttpClient(new HttpClient(), null);
 }