()
| 505 | } |
| 506 | |
| 507 | @Test |
| 508 | public void fetchAllNotMatchedNone() throws Exception { |
| 509 | setupStorage(true, true); |
| 510 | storage.flushRow(TREE_TABLE, new byte[] { 0, 1, 2 }); |
| 511 | Map<String, String> not_matched = |
| 512 | Tree.fetchNotMatched(storage.getTSDB(), 1, null).joinUninterruptibly(); |
| 513 | assertNotNull(not_matched); |
| 514 | assertEquals(0, not_matched.size()); |
| 515 | } |
| 516 | |
| 517 | @Test |
| 518 | public void fetchNotMatchedSingle() throws Exception { |
nothing calls this directly
no test coverage detected