()
| 108 | } |
| 109 | |
| 110 | @Test (expected = IllegalArgumentException.class) |
| 111 | public void validateEmptyStart() { |
| 112 | TSQuery q = this.getMetricForValidate(); |
| 113 | q.setStart(""); |
| 114 | q.validateAndSetQuery(); |
| 115 | } |
| 116 | |
| 117 | @Test (expected = IllegalArgumentException.class) |
| 118 | public void validateInvalidStart() { |
nothing calls this directly
no test coverage detected