提交 2c3da4dc authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Null tests for the firstKey() and lastKey()

上级 a9fd742b
......@@ -72,6 +72,10 @@ public class TestTransactionStore extends TestBase {
Transaction t = ts.begin();
ObjectDataType keyType = new ObjectDataType();
TransactionMap<Long, Long> map = t.openMap("test", keyType, keyType);
// firstKey()
assertNull(map.firstKey());
// lastKey()
assertNull(map.lastKey());
map.put(10L, 100L);
map.put(20L, 200L);
map.put(30L, 300L);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论