@@ -31,6 +31,7 @@ import reactor.core.publisher.Mono
31
31
*
32
32
* @author Mark Paluch
33
33
* @author Christoph Strobl
34
+ * @author Sebastien Deleuze
34
35
*/
35
36
class ReactiveSetOperationsExtensionsUnitTests {
36
37
@@ -79,7 +80,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
79
80
}
80
81
}
81
82
82
- @Test
83
+ @Test // DATAREDIS-1033
83
84
@ExperimentalCoroutinesApi
84
85
fun `pop as Flow` () {
85
86
@@ -155,7 +156,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
155
156
}
156
157
}
157
158
158
- @Test
159
+ @Test // DATAREDIS-1033
159
160
@ExperimentalCoroutinesApi
160
161
fun intersect () {
161
162
val operations = mockk<ReactiveSetOperations <String , String >>()
@@ -170,7 +171,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
170
171
}
171
172
}
172
173
173
- @Test
174
+ @Test // DATAREDIS-1033
174
175
@ExperimentalCoroutinesApi
175
176
fun `intersect with key and collection` () {
176
177
val operations = mockk<ReactiveSetOperations <String , String >>()
@@ -185,7 +186,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
185
186
}
186
187
}
187
188
188
- @Test
189
+ @Test // DATAREDIS-1033
189
190
@ExperimentalCoroutinesApi
190
191
fun `intersect with collection` () {
191
192
val operations = mockk<ReactiveSetOperations <String , String >>()
@@ -230,9 +231,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
230
231
}
231
232
}
232
233
233
- @Test
234
+ @Test // DATAREDIS-1033
234
235
@ExperimentalCoroutinesApi
235
236
fun union () {
237
+
236
238
val operations = mockk<ReactiveSetOperations <String , String >>()
237
239
every { operations.union(" foo" , " bar" ) } returns Flux .just(" baz" )
238
240
@@ -245,9 +247,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
245
247
}
246
248
}
247
249
248
- @Test
250
+ @Test // DATAREDIS-1033
249
251
@ExperimentalCoroutinesApi
250
252
fun `union with key and collection` () {
253
+
251
254
val operations = mockk<ReactiveSetOperations <String , String >>()
252
255
every { operations.union(" foo" , listOf (" bar" )) } returns Flux .just(" baz" )
253
256
@@ -260,9 +263,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
260
263
}
261
264
}
262
265
263
- @Test
266
+ @Test // DATAREDIS-1033
264
267
@ExperimentalCoroutinesApi
265
268
fun `union with collection` () {
269
+
266
270
val operations = mockk<ReactiveSetOperations <String , String >>()
267
271
every { operations.union(listOf (" bar" )) } returns Flux .just(" baz" )
268
272
@@ -305,9 +309,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
305
309
}
306
310
}
307
311
308
- @Test
312
+ @Test // DATAREDIS-1033
309
313
@ExperimentalCoroutinesApi
310
314
fun difference () {
315
+
311
316
val operations = mockk<ReactiveSetOperations <String , String >>()
312
317
every { operations.difference(" foo" , " bar" ) } returns Flux .just(" baz" )
313
318
@@ -320,9 +325,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
320
325
}
321
326
}
322
327
323
- @Test
328
+ @Test // DATAREDIS-1033
324
329
@ExperimentalCoroutinesApi
325
330
fun `difference with key and collection` () {
331
+
326
332
val operations = mockk<ReactiveSetOperations <String , String >>()
327
333
every { operations.difference(" foo" , listOf (" bar" )) } returns Flux .just(" baz" )
328
334
@@ -335,9 +341,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
335
341
}
336
342
}
337
343
338
- @Test
344
+ @Test // DATAREDIS-1033
339
345
@ExperimentalCoroutinesApi
340
346
fun `difference with collection` () {
347
+
341
348
val operations = mockk<ReactiveSetOperations <String , String >>()
342
349
every { operations.difference(listOf (" bar" )) } returns Flux .just(" baz" )
343
350
@@ -380,9 +387,10 @@ class ReactiveSetOperationsExtensionsUnitTests {
380
387
}
381
388
}
382
389
383
- @Test
390
+ @Test // DATAREDIS-1033
384
391
@ExperimentalCoroutinesApi
385
392
fun members () {
393
+
386
394
val operations = mockk<ReactiveSetOperations <String , String >>()
387
395
every { operations.members(" foo" ) } returns Flux .just(" baz" )
388
396
@@ -395,7 +403,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
395
403
}
396
404
}
397
405
398
- @Test
406
+ @Test // DATAREDIS-1033
399
407
@ExperimentalCoroutinesApi
400
408
fun scan () {
401
409
@@ -441,7 +449,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
441
449
}
442
450
}
443
451
444
- @Test
452
+ @Test // DATAREDIS-1033
445
453
@ExperimentalCoroutinesApi
446
454
fun distinctRandomMembers () {
447
455
@@ -457,7 +465,7 @@ class ReactiveSetOperationsExtensionsUnitTests {
457
465
}
458
466
}
459
467
460
- @Test
468
+ @Test // DATAREDIS-1033
461
469
@ExperimentalCoroutinesApi
462
470
fun randomMembers () {
463
471
0 commit comments