()
| 116 | } |
| 117 | |
| 118 | @Test(expected = IllegalArgumentException.class) |
| 119 | public void metricsIsNull() throws Exception { |
| 120 | Query query = getDefaultQueryBuilder().setMetrics(null).build(); |
| 121 | query.validate(); |
| 122 | } |
| 123 | |
| 124 | @Test(expected = IllegalArgumentException.class) |
| 125 | public void metricsIsEmpty() throws Exception { |
nothing calls this directly
no test coverage detected