[SB3 Update] JDBC source and supplier updates

- Fix jdbc-source tests to use new Spring Integration Test Binder
- Fix jdbc-supplier test to check root cause
This commit is contained in:
Chris Bono
2022-10-16 23:23:01 -05:00
parent ab83dcf743
commit b8caa0cf74

View File

@@ -91,6 +91,7 @@ public class DefaultJdbcSupplierTests {
void verifyNoIntMessageGroupTable() {
assertThatExceptionOfType(BadSqlGrammarException.class)
.isThrownBy(() -> this.jdbcTemplate.queryForList("SELECT * FROM INT_MESSAGE_GROUP"))
.havingCause()
.withMessageContaining("Table \"INT_MESSAGE_GROUP\" not found;");
}