()
| 103 | } |
| 104 | |
| 105 | @Test(expected = IllegalArgumentException.class) |
| 106 | public void validationErrorWhenTimeIsNull() throws Exception { |
| 107 | Query query = getDefaultQueryBuilder().setTime(null).build(); |
| 108 | query.validate(); |
| 109 | } |
| 110 | |
| 111 | @Test(expected = IllegalArgumentException.class) |
| 112 | public void invalidTime() throws Exception { |
nothing calls this directly
no test coverage detected