()
| 202 | } |
| 203 | |
| 204 | @Test |
| 205 | public void fetchRuleDoesNotExist() throws Exception { |
| 206 | setupStorage(); |
| 207 | final TreeRule rule = TreeRule.fetchRule(storage.getTSDB(), 1, 2, 2) |
| 208 | .joinUninterruptibly(); |
| 209 | assertNull(rule); |
| 210 | } |
| 211 | |
| 212 | @Test (expected = IllegalArgumentException.class) |
| 213 | public void fetchRuleBadTreeID0() throws Exception { |
nothing calls this directly
no test coverage detected