()
| 97 | } |
| 98 | |
| 99 | @Test |
| 100 | public void setEndTime() throws Exception { |
| 101 | query.setEndTime(1356998400L); |
| 102 | assertEquals(1356998400L, query.getEndTime()); |
| 103 | } |
| 104 | |
| 105 | @Test (expected = IllegalStateException.class) |
| 106 | public void getStartTimeNotSet() throws Exception { |
nothing calls this directly
no test coverage detected