()
| 137 | } |
| 138 | |
| 139 | @Test |
| 140 | public void getUIDMeta() throws Exception { |
| 141 | meta = UIDMeta.getUIDMeta(tsdb, UniqueIdType.METRIC, "000003") |
| 142 | .joinUninterruptibly(); |
| 143 | assertEquals(UniqueIdType.METRIC, meta.getType()); |
| 144 | assertEquals("sys.cpu.2", meta.getName()); |
| 145 | assertEquals("000003", meta.getUID()); |
| 146 | } |
| 147 | |
| 148 | @Test |
| 149 | public void getUIDMetaByte() throws Exception { |
nothing calls this directly
no test coverage detected