()
| 154 | } |
| 155 | |
| 156 | @Test |
| 157 | public void getLastWriteTimesSetQuery() throws Exception { |
| 158 | query = new TSUIDQuery(tsdb); |
| 159 | query.setQuery(METRIC_STRING, tags); |
| 160 | final ByteMap<Long> tsuids = query.getLastWriteTimes().joinUninterruptibly(); |
| 161 | assertEquals(1, tsuids.size()); |
| 162 | assertEquals(1388534400013L, (long)tsuids.get(TSUID)); |
| 163 | } |
| 164 | |
| 165 | @Test |
| 166 | public void getLastWriteTimesEmptyTags() throws Exception { |
nothing calls this directly
no test coverage detected