()
| 218 | } |
| 219 | |
| 220 | @Test |
| 221 | public void getGlobalAnnotationsEmpty() throws Exception { |
| 222 | setupStorage(false); |
| 223 | List<Annotation> notes = Annotation.getGlobalAnnotations(tsdb, 1328150000, |
| 224 | 1328160000).joinUninterruptibly(); |
| 225 | assertNotNull(notes); |
| 226 | assertEquals(0, notes.size()); |
| 227 | } |
| 228 | |
| 229 | @Test (expected = IllegalArgumentException.class) |
| 230 | public void getGlobalAnnotationsZeroEndtime() throws Exception { |
nothing calls this directly
no test coverage detected