| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | package com.base; |
||
| 34 | protected static Base setupBase() { |
||
| 35 | TestHttpServer server = AbstractBaseTest.makeServer(); |
||
| 36 | TestHttpClient httpClient = new TestHttpClient(server); |
||
| 37 | |||
| 38 | BaseClient baseClient = new BaseClient(httpClient); |
||
| 39 | baseClient |
||
| 40 | .setApiUrl("localhost") |
||
| 41 | .setClientId("1") |
||
| 42 | .setClientSecret("secret"); |
||
| 43 | |||
| 44 | return new Base(baseClient); |
||
| 45 | } |
||
| 57 |