Skip to content

Commit e7cf423

Browse files
chore: update mock server docs
1 parent 34d975a commit e7cf423

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

brand-dev-java-core/src/test/kotlin/com/branddev/api/services/ServiceParamsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internal class ServiceParamsTest {
3434
.build()
3535
}
3636

37-
@Disabled("Prism tests are disabled")
37+
@Disabled("Mock server tests are disabled")
3838
@Test
3939
fun retrieve() {
4040
val brandService = client.brand()

brand-dev-java-core/src/test/kotlin/com/branddev/api/services/async/BrandServiceAsyncTest.kt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import org.junit.jupiter.api.Test
2525

2626
internal class BrandServiceAsyncTest {
2727

28-
@Disabled("Prism tests are disabled")
28+
@Disabled("Mock server tests are disabled")
2929
@Test
3030
fun retrieve() {
3131
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -45,7 +45,7 @@ internal class BrandServiceAsyncTest {
4545
brand.validate()
4646
}
4747

48-
@Disabled("Prism tests are disabled")
48+
@Disabled("Mock server tests are disabled")
4949
@Test
5050
fun aiProduct() {
5151
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -60,7 +60,7 @@ internal class BrandServiceAsyncTest {
6060
response.validate()
6161
}
6262

63-
@Disabled("Prism tests are disabled")
63+
@Disabled("Mock server tests are disabled")
6464
@Test
6565
fun aiProducts() {
6666
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -79,7 +79,7 @@ internal class BrandServiceAsyncTest {
7979
response.validate()
8080
}
8181

82-
@Disabled("Prism tests are disabled")
82+
@Disabled("Mock server tests are disabled")
8383
@Test
8484
fun aiQuery() {
8585
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -133,7 +133,7 @@ internal class BrandServiceAsyncTest {
133133
response.validate()
134134
}
135135

136-
@Disabled("Prism tests are disabled")
136+
@Disabled("Mock server tests are disabled")
137137
@Test
138138
fun fonts() {
139139
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -148,7 +148,7 @@ internal class BrandServiceAsyncTest {
148148
response.validate()
149149
}
150150

151-
@Disabled("Prism tests are disabled")
151+
@Disabled("Mock server tests are disabled")
152152
@Test
153153
fun identifyFromTransaction() {
154154
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -172,7 +172,7 @@ internal class BrandServiceAsyncTest {
172172
response.validate()
173173
}
174174

175-
@Disabled("Prism tests are disabled")
175+
@Disabled("Mock server tests are disabled")
176176
@Test
177177
fun prefetch() {
178178
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -187,7 +187,7 @@ internal class BrandServiceAsyncTest {
187187
response.validate()
188188
}
189189

190-
@Disabled("Prism tests are disabled")
190+
@Disabled("Mock server tests are disabled")
191191
@Test
192192
fun prefetchByEmail() {
193193
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -205,7 +205,7 @@ internal class BrandServiceAsyncTest {
205205
response.validate()
206206
}
207207

208-
@Disabled("Prism tests are disabled")
208+
@Disabled("Mock server tests are disabled")
209209
@Test
210210
fun retrieveByEmail() {
211211
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -225,7 +225,7 @@ internal class BrandServiceAsyncTest {
225225
response.validate()
226226
}
227227

228-
@Disabled("Prism tests are disabled")
228+
@Disabled("Mock server tests are disabled")
229229
@Test
230230
fun retrieveByIsin() {
231231
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -245,7 +245,7 @@ internal class BrandServiceAsyncTest {
245245
response.validate()
246246
}
247247

248-
@Disabled("Prism tests are disabled")
248+
@Disabled("Mock server tests are disabled")
249249
@Test
250250
fun retrieveByName() {
251251
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -265,7 +265,7 @@ internal class BrandServiceAsyncTest {
265265
response.validate()
266266
}
267267

268-
@Disabled("Prism tests are disabled")
268+
@Disabled("Mock server tests are disabled")
269269
@Test
270270
fun retrieveByTicker() {
271271
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -286,7 +286,7 @@ internal class BrandServiceAsyncTest {
286286
response.validate()
287287
}
288288

289-
@Disabled("Prism tests are disabled")
289+
@Disabled("Mock server tests are disabled")
290290
@Test
291291
fun retrieveNaics() {
292292
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -306,7 +306,7 @@ internal class BrandServiceAsyncTest {
306306
response.validate()
307307
}
308308

309-
@Disabled("Prism tests are disabled")
309+
@Disabled("Mock server tests are disabled")
310310
@Test
311311
fun retrieveSimplified() {
312312
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -321,7 +321,7 @@ internal class BrandServiceAsyncTest {
321321
response.validate()
322322
}
323323

324-
@Disabled("Prism tests are disabled")
324+
@Disabled("Mock server tests are disabled")
325325
@Test
326326
fun screenshot() {
327327
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()
@@ -341,7 +341,7 @@ internal class BrandServiceAsyncTest {
341341
response.validate()
342342
}
343343

344-
@Disabled("Prism tests are disabled")
344+
@Disabled("Mock server tests are disabled")
345345
@Test
346346
fun styleguide() {
347347
val client = BrandDevOkHttpClientAsync.builder().apiKey("My API Key").build()

brand-dev-java-core/src/test/kotlin/com/branddev/api/services/blocking/BrandServiceTest.kt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import org.junit.jupiter.api.Test
2525

2626
internal class BrandServiceTest {
2727

28-
@Disabled("Prism tests are disabled")
28+
@Disabled("Mock server tests are disabled")
2929
@Test
3030
fun retrieve() {
3131
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -44,7 +44,7 @@ internal class BrandServiceTest {
4444
brand.validate()
4545
}
4646

47-
@Disabled("Prism tests are disabled")
47+
@Disabled("Mock server tests are disabled")
4848
@Test
4949
fun aiProduct() {
5050
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -58,7 +58,7 @@ internal class BrandServiceTest {
5858
response.validate()
5959
}
6060

61-
@Disabled("Prism tests are disabled")
61+
@Disabled("Mock server tests are disabled")
6262
@Test
6363
fun aiProducts() {
6464
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -76,7 +76,7 @@ internal class BrandServiceTest {
7676
response.validate()
7777
}
7878

79-
@Disabled("Prism tests are disabled")
79+
@Disabled("Mock server tests are disabled")
8080
@Test
8181
fun aiQuery() {
8282
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -129,7 +129,7 @@ internal class BrandServiceTest {
129129
response.validate()
130130
}
131131

132-
@Disabled("Prism tests are disabled")
132+
@Disabled("Mock server tests are disabled")
133133
@Test
134134
fun fonts() {
135135
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -141,7 +141,7 @@ internal class BrandServiceTest {
141141
response.validate()
142142
}
143143

144-
@Disabled("Prism tests are disabled")
144+
@Disabled("Mock server tests are disabled")
145145
@Test
146146
fun identifyFromTransaction() {
147147
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -164,7 +164,7 @@ internal class BrandServiceTest {
164164
response.validate()
165165
}
166166

167-
@Disabled("Prism tests are disabled")
167+
@Disabled("Mock server tests are disabled")
168168
@Test
169169
fun prefetch() {
170170
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -178,7 +178,7 @@ internal class BrandServiceTest {
178178
response.validate()
179179
}
180180

181-
@Disabled("Prism tests are disabled")
181+
@Disabled("Mock server tests are disabled")
182182
@Test
183183
fun prefetchByEmail() {
184184
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -195,7 +195,7 @@ internal class BrandServiceTest {
195195
response.validate()
196196
}
197197

198-
@Disabled("Prism tests are disabled")
198+
@Disabled("Mock server tests are disabled")
199199
@Test
200200
fun retrieveByEmail() {
201201
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -214,7 +214,7 @@ internal class BrandServiceTest {
214214
response.validate()
215215
}
216216

217-
@Disabled("Prism tests are disabled")
217+
@Disabled("Mock server tests are disabled")
218218
@Test
219219
fun retrieveByIsin() {
220220
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -233,7 +233,7 @@ internal class BrandServiceTest {
233233
response.validate()
234234
}
235235

236-
@Disabled("Prism tests are disabled")
236+
@Disabled("Mock server tests are disabled")
237237
@Test
238238
fun retrieveByName() {
239239
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -252,7 +252,7 @@ internal class BrandServiceTest {
252252
response.validate()
253253
}
254254

255-
@Disabled("Prism tests are disabled")
255+
@Disabled("Mock server tests are disabled")
256256
@Test
257257
fun retrieveByTicker() {
258258
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -272,7 +272,7 @@ internal class BrandServiceTest {
272272
response.validate()
273273
}
274274

275-
@Disabled("Prism tests are disabled")
275+
@Disabled("Mock server tests are disabled")
276276
@Test
277277
fun retrieveNaics() {
278278
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -291,7 +291,7 @@ internal class BrandServiceTest {
291291
response.validate()
292292
}
293293

294-
@Disabled("Prism tests are disabled")
294+
@Disabled("Mock server tests are disabled")
295295
@Test
296296
fun retrieveSimplified() {
297297
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -305,7 +305,7 @@ internal class BrandServiceTest {
305305
response.validate()
306306
}
307307

308-
@Disabled("Prism tests are disabled")
308+
@Disabled("Mock server tests are disabled")
309309
@Test
310310
fun screenshot() {
311311
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()
@@ -324,7 +324,7 @@ internal class BrandServiceTest {
324324
response.validate()
325325
}
326326

327-
@Disabled("Prism tests are disabled")
327+
@Disabled("Mock server tests are disabled")
328328
@Test
329329
fun styleguide() {
330330
val client = BrandDevOkHttpClient.builder().apiKey("My API Key").build()

0 commit comments

Comments
 (0)