()
| 95 | } |
| 96 | |
| 97 | @Test |
| 98 | public void getAnnotationNormalizeMs() throws Exception { |
| 99 | setupStorage(false); |
| 100 | note = Annotation.getAnnotation(tsdb, TSUID, 1388450562000L) |
| 101 | .joinUninterruptibly(); |
| 102 | assertNotNull(note); |
| 103 | assertEquals(TSUID, note.getTSUID()); |
| 104 | assertEquals("Hello!", note.getDescription()); |
| 105 | assertEquals(1388450562L, note.getStartTime()); |
| 106 | } |
| 107 | |
| 108 | @Test |
| 109 | public void getAnnotationGlobal() throws Exception { |
nothing calls this directly
no test coverage detected