()
| 228 | } |
| 229 | |
| 230 | @Test (expected = IllegalArgumentException.class) |
| 231 | public void syncToStorageNullUID() throws Exception { |
| 232 | meta = new UIDMeta(UniqueIdType.METRIC, null); |
| 233 | meta.syncToStorage(tsdb, true).joinUninterruptibly(); |
| 234 | } |
| 235 | |
| 236 | @Test (expected = IllegalArgumentException.class) |
| 237 | public void syncToStorageEmptyUID() throws Exception { |
nothing calls this directly
no test coverage detected