@@ -112,7 +112,7 @@ void before() {
112
112
113
113
protected abstract Class <? extends LegoSetRepository > getRepositoryInterfaceType ();
114
114
115
- @ Test
115
+ @ Test // GH-2
116
116
void shouldInsertNewItems () {
117
117
118
118
LegoSet legoSet1 = new LegoSet (null , "SCHAUFELRADBAGGER" , 12 , true );
@@ -124,7 +124,7 @@ void shouldInsertNewItems() {
124
124
.verifyComplete ();
125
125
}
126
126
127
- @ Test
127
+ @ Test // GH-2
128
128
void shouldFindItemsByManual () {
129
129
130
130
shouldInsertNewItems ();
@@ -137,7 +137,7 @@ void shouldFindItemsByManual() {
137
137
.verifyComplete ();
138
138
}
139
139
140
- @ Test
140
+ @ Test // GH-2
141
141
void shouldFindItemsByNameContains () {
142
142
143
143
shouldInsertNewItems ();
@@ -151,7 +151,7 @@ void shouldFindItemsByNameContains() {
151
151
}).verifyComplete ();
152
152
}
153
153
154
- @ Test // gh -475, gh -607
154
+ @ Test // GH -475, GH -607
155
155
void shouldFindApplyingInterfaceProjection () {
156
156
157
157
shouldInsertNewItems ();
@@ -173,7 +173,7 @@ void shouldFindApplyingInterfaceProjection() {
173
173
}).verifyComplete ();
174
174
}
175
175
176
- @ Test // gh -475
176
+ @ Test // GH -475
177
177
void shouldByStringQueryApplyingDtoProjection () {
178
178
179
179
shouldInsertNewItems ();
@@ -187,7 +187,7 @@ void shouldByStringQueryApplyingDtoProjection() {
187
187
}).verifyComplete ();
188
188
}
189
189
190
- @ Test // gh -344
190
+ @ Test // GH -344
191
191
void shouldFindApplyingDistinctProjection () {
192
192
193
193
LegoSet legoSet1 = new LegoSet (null , "SCHAUFELRADBAGGER" , 12 , true );
@@ -207,7 +207,7 @@ void shouldFindApplyingDistinctProjection() {
207
207
}).verifyComplete ();
208
208
}
209
209
210
- @ Test // gh -41
210
+ @ Test // GH -41
211
211
void shouldFindApplyingSimpleTypeProjection () {
212
212
213
213
shouldInsertNewItems ();
@@ -220,7 +220,7 @@ void shouldFindApplyingSimpleTypeProjection() {
220
220
}).verifyComplete ();
221
221
}
222
222
223
- @ Test // gh -698
223
+ @ Test // GH -698
224
224
void shouldBeTrue () {
225
225
shouldInsertNewItems ();
226
226
@@ -246,7 +246,7 @@ void shouldDeleteUsingQueryMethod() {
246
246
assertThat (getCount (count )).satisfies (numberOf (1 ));
247
247
}
248
248
249
- @ Test // gh -335
249
+ @ Test // GH -335
250
250
void shouldFindByPageable () {
251
251
252
252
Flux <LegoSet > sets = Flux .fromStream (IntStream .range (0 , 100 ).mapToObj (value -> {
@@ -275,7 +275,7 @@ void shouldFindByPageable() {
275
275
}).verifyComplete ();
276
276
}
277
277
278
- @ Test // gh -335
278
+ @ Test // GH -335
279
279
void shouldFindTop10 () {
280
280
281
281
Flux <LegoSet > sets = Flux
@@ -292,7 +292,7 @@ void shouldFindTop10() {
292
292
.verifyComplete ();
293
293
}
294
294
295
- @ Test // gh -341
295
+ @ Test // GH -341
296
296
void shouldDeleteAll () {
297
297
298
298
shouldInsertNewItems ();
@@ -306,7 +306,7 @@ void shouldDeleteAll() {
306
306
.verifyComplete ();
307
307
}
308
308
309
- @ Test
309
+ @ Test // GH-2
310
310
public void shouldInsertItemsTransactional () {
311
311
312
312
R2dbcTransactionManager r2dbcTransactionManager = new R2dbcTransactionManager (connectionFactory );
@@ -330,7 +330,7 @@ public void shouldInsertItemsTransactional() {
330
330
assertThat (getCount (map )).satisfies (numberOf (2 ));
331
331
}
332
332
333
- @ Test // gh -363
333
+ @ Test // GH -363
334
334
void derivedQueryWithCountProjection () {
335
335
336
336
shouldInsertNewItems ();
@@ -341,7 +341,7 @@ void derivedQueryWithCountProjection() {
341
341
.verifyComplete ();
342
342
}
343
343
344
- @ Test // gh -363
344
+ @ Test // GH -363
345
345
void derivedQueryWithCount () {
346
346
347
347
shouldInsertNewItems ();
@@ -352,7 +352,7 @@ void derivedQueryWithCount() {
352
352
.verifyComplete ();
353
353
}
354
354
355
- @ Test // gh -468
355
+ @ Test // GH -468
356
356
void derivedQueryWithExists () {
357
357
358
358
shouldInsertNewItems ();
@@ -368,7 +368,7 @@ void derivedQueryWithExists() {
368
368
.verifyComplete ();
369
369
}
370
370
371
- @ Test // gh -421
371
+ @ Test // GH -421
372
372
void shouldDeleteAllAndReturnCount () {
373
373
374
374
shouldInsertNewItems ();
@@ -383,7 +383,7 @@ void shouldDeleteAllAndReturnCount() {
383
383
.verifyComplete ();
384
384
}
385
385
386
- @ Test
386
+ @ Test // GH-1041
387
387
void getAllByNameWithWriteLock () {
388
388
389
389
shouldInsertNewItems ();
@@ -396,7 +396,7 @@ void getAllByNameWithWriteLock() {
396
396
.verifyComplete ();
397
397
}
398
398
399
- @ Test
399
+ @ Test // GH-1041
400
400
void findByNameAndFlagWithReadLock () {
401
401
402
402
shouldInsertNewItems ();
0 commit comments