()
| 146 | } |
| 147 | |
| 148 | @Test |
| 149 | public void getUIDMetaByte() throws Exception { |
| 150 | meta = UIDMeta.getUIDMeta(tsdb, UniqueIdType.METRIC, new byte[] { 0, 0, 3 }) |
| 151 | .joinUninterruptibly(); |
| 152 | assertEquals(UniqueIdType.METRIC, meta.getType()); |
| 153 | assertEquals("sys.cpu.2", meta.getName()); |
| 154 | assertEquals("000003", meta.getUID()); |
| 155 | } |
| 156 | |
| 157 | @Test |
| 158 | public void getUIDMetaExists() throws Exception { |
nothing calls this directly
no test coverage detected