()
| 84 | } |
| 85 | |
| 86 | @Test |
| 87 | public void getAnnotationSalted() throws Exception { |
| 88 | setupStorage(true); |
| 89 | note = Annotation.getAnnotation(tsdb, TSUID, 1388450562L) |
| 90 | .joinUninterruptibly(); |
| 91 | assertNotNull(note); |
| 92 | assertEquals(TSUID, note.getTSUID()); |
| 93 | assertEquals("Hello!", note.getDescription()); |
| 94 | assertEquals(1388450562L, note.getStartTime()); |
| 95 | } |
| 96 | |
| 97 | @Test |
| 98 | public void getAnnotationNormalizeMs() throws Exception { |
nothing calls this directly
no test coverage detected