()
| 621 | } |
| 622 | |
| 623 | @Test (expected = IllegalArgumentException.class) |
| 624 | public void deleteRangeEmptyEnd() throws Exception { |
| 625 | Annotation.deleteRange(tsdb, null, 1328140799000L, 0).joinUninterruptibly(); |
| 626 | } |
| 627 | |
| 628 | @Test (expected = IllegalArgumentException.class) |
| 629 | public void deleteRangeEndLessThanStart() throws Exception { |
nothing calls this directly
no test coverage detected