()
| 86 | } |
| 87 | |
| 88 | @Test (expected = IllegalArgumentException.class) |
| 89 | public void validateEmptyAgg() { |
| 90 | TSSubQuery sub = getMetricForValidate(); |
| 91 | sub.setAggregator(""); |
| 92 | sub.validateAndSetQuery(); |
| 93 | } |
| 94 | |
| 95 | @Test (expected = IllegalArgumentException.class) |
| 96 | public void validateBadAgg() { |
nothing calls this directly
no test coverage detected