()
| 222 | } |
| 223 | |
| 224 | @Test (expected = IllegalStateException.class) |
| 225 | public void storeTreeNoChanges() throws Exception { |
| 226 | setupStorage(true, true); |
| 227 | final Tree tree = buildTestTree(); |
| 228 | tree.storeTree(storage.getTSDB(), false); |
| 229 | tree.storeTree(storage.getTSDB(), false); |
| 230 | } |
| 231 | |
| 232 | @Test (expected = IllegalArgumentException.class) |
| 233 | public void storeTreeTreeID0() throws Exception { |
nothing calls this directly
no test coverage detected