()
| 101 | } |
| 102 | |
| 103 | @Test (expected = IllegalArgumentException.class) |
| 104 | public void validateNullStart() { |
| 105 | TSQuery q = this.getMetricForValidate(); |
| 106 | q.setStart(null); |
| 107 | q.validateAndSetQuery(); |
| 108 | } |
| 109 | |
| 110 | @Test (expected = IllegalArgumentException.class) |
| 111 | public void validateEmptyStart() { |
nothing calls this directly
no test coverage detected