File tree 1 file changed +5
-5
lines changed
spring-data-relational/src/test/java/org/springframework/data/relational/core/query
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 28
28
* @author Jens Schauder
29
29
* @author Mark Paluch
30
30
*/
31
- public class QueryUnitTests {
31
+ class QueryUnitTests {
32
32
33
33
@ Test // DATAJDBC-614
34
- public void withCombinesSortAndPaging () {
34
+ void withCombinesSortAndPaging () {
35
35
36
36
Query query = Query .empty () //
37
37
.sort (Sort .by ("alpha" )) //
@@ -43,7 +43,7 @@ public void withCombinesSortAndPaging() {
43
43
}
44
44
45
45
@ Test // DATAJDBC-614
46
- public void withCombinesEmptySortAndPaging () {
46
+ void withCombinesEmptySortAndPaging () {
47
47
48
48
Query query = Query .empty () //
49
49
.with (PageRequest .of (2 , 20 , Sort .by ("beta" )));
@@ -54,7 +54,7 @@ public void withCombinesEmptySortAndPaging() {
54
54
}
55
55
56
56
@ Test // DATAJDBC-614
57
- public void withCombinesSortAndUnsortedPaging () {
57
+ void withCombinesSortAndUnsortedPaging () {
58
58
59
59
Query query = Query .empty () //
60
60
.sort (Sort .by ("alpha" )) //
@@ -66,7 +66,7 @@ public void withCombinesSortAndUnsortedPaging() {
66
66
}
67
67
68
68
@ Test // GH-1939
69
- public void withCombinesUnpagedWithSort () {
69
+ void withCombinesUnpagedWithSort () {
70
70
71
71
Query query = Query .empty () //
72
72
.with (Pageable .unpaged (Sort .by ("beta" )));
You can’t perform that action at this time.
0 commit comments