()
| 230 | } |
| 231 | |
| 232 | @Test (expected = IllegalArgumentException.class) |
| 233 | public void storeTreeTreeID0() throws Exception { |
| 234 | setupStorage(true, true); |
| 235 | final Tree tree = buildTestTree(); |
| 236 | tree.setTreeId(0); |
| 237 | tree.storeTree(storage.getTSDB(), false); |
| 238 | } |
| 239 | |
| 240 | @Test (expected = IllegalArgumentException.class) |
| 241 | public void storeTreeTreeID655536() throws Exception { |
nothing calls this directly
no test coverage detected