提交 359d5e5b authored 作者: Thomas Mueller's avatar Thomas Mueller

Improve test case.

上级 6f59d423
...@@ -67,7 +67,12 @@ public class TestOutOfMemory extends TestBase { ...@@ -67,7 +67,12 @@ public class TestOutOfMemory extends TestBase {
rs.next(); rs.next();
assertEquals(3000, rs.getInt(1)); assertEquals(3000, rs.getInt(1));
} finally { } finally {
conn.close(); try {
conn.close();
} catch (SQLException e) {
// out of memory will close the database
assertKnownException(e);
}
} }
deleteDb("outOfMemory"); deleteDb("outOfMemory");
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论