()
| 172 | } |
| 173 | |
| 174 | @Test(expected = IllegalArgumentException.class) |
| 175 | public void duplicatedFilterId() throws Exception { |
| 176 | Query query = getDefaultQueryBuilder().setFilters( |
| 177 | Arrays.asList(filter, filter)).build(); |
| 178 | query.validate(); |
| 179 | } |
| 180 | |
| 181 | @Test(expected = IllegalArgumentException.class) |
| 182 | public void duplicatedExpressionId() throws Exception { |
nothing calls this directly
no test coverage detected