We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8b0071 commit 82ae0bdCopy full SHA for 82ae0bd
src/test/java/examples/animal/data/BindingTest.java
@@ -51,6 +51,7 @@ class BindingTest {
51
void setup() throws Exception {
52
Class.forName(JDBC_DRIVER);
53
InputStream is = getClass().getResourceAsStream("/examples/animal/data/CreateAnimalData.sql");
54
+ assert is != null;
55
try (Connection connection = DriverManager.getConnection(JDBC_URL, "sa", "")) {
56
ScriptRunner sr = new ScriptRunner(connection);
57
sr.setLogWriter(null);
0 commit comments