()
| 72 | } |
| 73 | |
| 74 | @Test |
| 75 | public void getAnnotation() throws Exception { |
| 76 | setupStorage(false); |
| 77 | |
| 78 | note = Annotation.getAnnotation(tsdb, TSUID, 1388450562L) |
| 79 | .joinUninterruptibly(); |
| 80 | assertNotNull(note); |
| 81 | assertEquals(TSUID, note.getTSUID()); |
| 82 | assertEquals("Hello!", note.getDescription()); |
| 83 | assertEquals(1388450562L, note.getStartTime()); |
| 84 | } |
| 85 | |
| 86 | @Test |
| 87 | public void getAnnotationSalted() throws Exception { |
nothing calls this directly
no test coverage detected