()
| 192 | } |
| 193 | |
| 194 | @Test |
| 195 | public void getLastWriteTimesNoMatch() throws Exception { |
| 196 | storage.flushStorage(); |
| 197 | query = new TSUIDQuery(tsdb, METRIC_STRING, tags); |
| 198 | final ByteMap<Long> tsuids = query.getLastWriteTimes().joinUninterruptibly(); |
| 199 | assertTrue(tsuids.isEmpty()); |
| 200 | } |
| 201 | |
| 202 | @Test (expected = NoSuchUniqueName.class) |
| 203 | public void getLastWriteTimesNSUNMetric() throws Exception { |
nothing calls this directly
no test coverage detected