|
1 | 1 | package com.amadeus.referenceData.locations;
|
2 | 2 |
|
3 |
| -import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; |
4 |
| -import static com.github.tomakehurst.wiremock.client.WireMock.get; |
5 |
| -import static com.github.tomakehurst.wiremock.client.WireMock.post; |
6 |
| -import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; |
7 |
| -import static org.assertj.core.api.BDDAssertions.then; |
8 |
| - |
9 | 3 | import java.io.IOException;
|
10 | 4 | import java.net.URLEncoder;
|
11 |
| -import java.nio.charset.StandardCharsets; |
12 | 5 | import java.util.ArrayList;
|
13 | 6 | import java.util.List;
|
14 |
| -import java.util.stream.Collectors; |
15 | 7 |
|
16 | 8 | import com.amadeus.Amadeus;
|
17 | 9 | import com.amadeus.Params;
|
18 | 10 | import com.amadeus.exceptions.ResponseException;
|
19 | 11 | import com.amadeus.resources.Hotel;
|
20 | 12 | import com.amadeus.resources.HotelOfferSearch;
|
21 |
| -import com.github.tomakehurst.wiremock.WireMockServer; |
22 | 13 | import org.junit.jupiter.api.AfterEach;
|
23 | 14 | import org.junit.jupiter.api.BeforeEach;
|
24 |
| -import org.junit.jupiter.api.Disabled; |
25 | 15 | import org.junit.jupiter.api.Test;
|
26 | 16 |
|
| 17 | +import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; |
| 18 | +import static com.github.tomakehurst.wiremock.client.WireMock.get; |
| 19 | +import static com.github.tomakehurst.wiremock.client.WireMock.post; |
| 20 | +import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; |
| 21 | +import static org.assertj.core.api.BDDAssertions.then; |
| 22 | + |
| 23 | +import com.github.tomakehurst.wiremock.WireMockServer; |
| 24 | + |
27 | 25 | public class HotelIT {
|
28 | 26 |
|
29 | 27 | WireMockServer wireMockServer;
|
|
0 commit comments