()
| 213 | } |
| 214 | |
| 215 | @Test |
| 216 | public void storeTree() throws Exception { |
| 217 | setupStorage(true, true); |
| 218 | final Tree tree = buildTestTree(); |
| 219 | tree.setName("New Name"); |
| 220 | assertNotNull(tree.storeTree(storage.getTSDB(), false) |
| 221 | .joinUninterruptibly()); |
| 222 | } |
| 223 | |
| 224 | @Test (expected = IllegalStateException.class) |
| 225 | public void storeTreeNoChanges() throws Exception { |
nothing calls this directly
no test coverage detected