|
|
|
|
@ -38,8 +38,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -38,8 +38,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
JdbcMappingContext context = new JdbcMappingContext(); |
|
|
|
|
private RelationalPersistentEntity<?> entity = context.getRequiredPersistentEntity(DummyEntity.class); |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void isEmbedded() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void isEmbedded() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -49,8 +49,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -49,8 +49,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void isMultiValued() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void isMultiValued() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -62,8 +62,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -62,8 +62,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void leafEntity() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void leafEntity() { |
|
|
|
|
|
|
|
|
|
RelationalPersistentEntity<?> second = context.getRequiredPersistentEntity(Second.class); |
|
|
|
|
RelationalPersistentEntity<?> third = context.getRequiredPersistentEntity(Third.class); |
|
|
|
|
@ -78,8 +78,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -78,8 +78,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void isEntity() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void isEntity() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -94,8 +94,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -94,8 +94,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void getTableName() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void getTableName() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -109,8 +109,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -109,8 +109,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void getTableAlias() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void getTableAlias() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -129,8 +129,8 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -129,8 +129,8 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
public void getColumnName() { |
|
|
|
|
@Test // DATAJDBC-340
|
|
|
|
|
void getColumnName() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -144,7 +144,7 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -144,7 +144,7 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test // DATAJDBC-359
|
|
|
|
|
public void idDefiningPath() { |
|
|
|
|
void idDefiningPath() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -160,7 +160,7 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -160,7 +160,7 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test // DATAJDBC-359
|
|
|
|
|
public void reverseColumnName() { |
|
|
|
|
void reverseColumnName() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -177,7 +177,7 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -177,7 +177,7 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test // DATAJDBC-359
|
|
|
|
|
public void getRequiredIdProperty() { |
|
|
|
|
void getRequiredIdProperty() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
@ -189,7 +189,7 @@ public class PersistentPropertyPathExtensionUnitTests {
@@ -189,7 +189,7 @@ public class PersistentPropertyPathExtensionUnitTests {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Test // DATAJDBC-359
|
|
|
|
|
public void extendBy() { |
|
|
|
|
void extendBy() { |
|
|
|
|
|
|
|
|
|
assertSoftly(softly -> { |
|
|
|
|
|
|
|
|
|
|