Browse Source

Polishing.

Standardized GitHub references of tests.

Original pull request spring-projects/spring-data-r2dbc/pull/691
pull/1188/head
Jens Schauder 4 years ago
parent
commit
eabcee7c4e
No known key found for this signature in database
GPG Key ID: 45CC872F17423DBF
  1. 6
      spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/query/PartTreeR2dbcQueryUnitTests.java

6
spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/query/PartTreeR2dbcQueryUnitTests.java

@ -176,7 +176,7 @@ class PartTreeR2dbcQueryUnitTests { @@ -176,7 +176,7 @@ class PartTreeR2dbcQueryUnitTests {
.where(TABLE + ".last_name = $1 OR (" + TABLE + ".first_name = $2)");
}
@Test // GH-282, gh-349
@Test // GH-282, GH-349
void createsQueryToFindAllEntitiesByDateAttributeBetween() throws Exception {
R2dbcQueryMethod queryMethod = getQueryMethod("findAllByDateOfBirthBetween", Date.class, Date.class);
@ -518,7 +518,7 @@ class PartTreeR2dbcQueryUnitTests { @@ -518,7 +518,7 @@ class PartTreeR2dbcQueryUnitTests {
.where(TABLE + ".age NOT IN ($1)");
}
@Test // GH-282, gh-698
@Test // GH-282, GH-698
void createsQueryToFindAllEntitiesByBooleanAttributeTrue() throws Exception {
R2dbcQueryMethod queryMethod = getQueryMethod("findAllByActiveTrue");
@ -532,7 +532,7 @@ class PartTreeR2dbcQueryUnitTests { @@ -532,7 +532,7 @@ class PartTreeR2dbcQueryUnitTests {
.where(TABLE + ".active = $1");
}
@Test // GH-282, gh-698
@Test // GH-282, GH-698
void createsQueryToFindAllEntitiesByBooleanAttributeFalse() throws Exception {
R2dbcQueryMethod queryMethod = getQueryMethod("findAllByActiveFalse");

Loading…
Cancel
Save