()
| 106 | } |
| 107 | |
| 108 | @Test |
| 109 | public void getAnnotationGlobal() throws Exception { |
| 110 | setupStorage(false); |
| 111 | note = Annotation.getAnnotation(tsdb, 1328140800000L) |
| 112 | .joinUninterruptibly(); |
| 113 | assertNotNull(note); |
| 114 | assertEquals("", note.getTSUID()); |
| 115 | assertEquals("Description", note.getDescription()); |
| 116 | assertEquals(1328140800L, note.getStartTime()); |
| 117 | } |
| 118 | |
| 119 | @Test |
| 120 | public void getAnnotationGlobalSalted() throws Exception { |
nothing calls this directly
no test coverage detected