@@ -147,6 +147,7 @@ public void setup() {
147
147
Mockito .when (singleResponse .isParsed ()).thenReturn (true );
148
148
Mockito .when (singleResponse .getData ()).thenReturn (jsonObject );
149
149
}
150
+
150
151
@ Test
151
152
public void testCheckinLinks () throws ResponseException {
152
153
// Testing Checkin Links
@@ -204,9 +205,9 @@ public void testPOIs() throws ResponseException {
204
205
public void testPOIsBySquare () throws ResponseException {
205
206
// Testing Points of Interest by square
206
207
Mockito .when (client .get ("/v1/reference-data/locations/pois" , null ))
207
- .thenReturn (multiResponse );
208
+ .thenReturn (multiResponse );
208
209
Mockito .when (client .get ("/v1/reference-data/locations/pois" , params ))
209
- .thenReturn (multiResponse );
210
+ .thenReturn (multiResponse );
210
211
Mockito .when (client .get ("/v1/reference-data/locations/pois/by-square" , null ))
211
212
.thenReturn (multiResponse );
212
213
Mockito .when (client .get ("/v1/reference-data/locations/pois/by-square" , params ))
@@ -221,9 +222,9 @@ public void testPOIsBySquare() throws ResponseException {
221
222
public void testPOIsById () throws ResponseException {
222
223
// Testing Points of Interest by Id
223
224
Mockito .when (client .get ("/v1/reference-data/locations/pois" , null ))
224
- .thenReturn (multiResponse );
225
+ .thenReturn (multiResponse );
225
226
Mockito .when (client .get ("/v1/reference-data/locations/pois" , params ))
226
- .thenReturn (multiResponse );
227
+ .thenReturn (multiResponse );
227
228
Mockito .when (client .get ("/v1/reference-data/locations/pois/XXX" , null ))
228
229
.thenReturn (multiResponse );
229
230
Mockito .when (client .get ("/v1/reference-data/locations/pois/XXX" , params ))
0 commit comments