()
| 234 | } |
| 235 | |
| 236 | @Test (expected = IllegalArgumentException.class) |
| 237 | public void syncToStorageEmptyUID() throws Exception { |
| 238 | meta = new UIDMeta(UniqueIdType.METRIC, ""); |
| 239 | meta.syncToStorage(tsdb, true).joinUninterruptibly(); |
| 240 | } |
| 241 | |
| 242 | @Test (expected = NoSuchUniqueId.class) |
| 243 | public void syncToStorageNoSuch() throws Exception { |
nothing calls this directly
no test coverage detected