()
| 215 | } |
| 216 | |
| 217 | @Test (expected = IllegalStateException.class) |
| 218 | public void syncToStorageNoChanges() throws Exception { |
| 219 | meta = UIDMeta.getUIDMeta(tsdb, UniqueIdType.METRIC, "000001") |
| 220 | .joinUninterruptibly(); |
| 221 | meta.syncToStorage(tsdb, false).joinUninterruptibly(); |
| 222 | } |
| 223 | |
| 224 | @Test (expected = IllegalArgumentException.class) |
| 225 | public void syncToStorageNullType() throws Exception { |
nothing calls this directly
no test coverage detected