提交 54d5fcdd authored 作者: Thomas Mueller's avatar Thomas Mueller

Issue 334: Java functions that return CLOB or BLOB objects could not be used as tables.

上级 189b47a6
...@@ -839,6 +839,16 @@ public abstract class TestBase { ...@@ -839,6 +839,16 @@ public abstract class TestBase {
assertTrue("Expected: true got: false", condition); assertTrue("Expected: true got: false", condition);
} }
/**
* Check that the passed object is null.
*
* @param obj the object
* @throws AssertionError if the condition is false
*/
public void assertNull(Object obj) {
assertTrue("Expected: null got: " + obj, obj == null);
}
/** /**
* Check that the passed boolean is true. * Check that the passed boolean is true.
* *
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论