()
| 146 | } |
| 147 | |
| 148 | @Test |
| 149 | public void getLastWriteTimes() throws Exception { |
| 150 | query = new TSUIDQuery(tsdb, METRIC_STRING, tags); |
| 151 | final ByteMap<Long> tsuids = query.getLastWriteTimes().joinUninterruptibly(); |
| 152 | assertEquals(1, tsuids.size()); |
| 153 | assertEquals(1388534400013L, (long)tsuids.get(TSUID)); |
| 154 | } |
| 155 | |
| 156 | @Test |
| 157 | public void getLastWriteTimesSetQuery() throws Exception { |
no test coverage detected