()
| 132 | } |
| 133 | |
| 134 | @Test |
| 135 | public void validateEmptyEnd() { |
| 136 | PowerMockito.mockStatic(System.class); |
| 137 | when(System.currentTimeMillis()).thenReturn(1357300800000L); |
| 138 | TSQuery q = this.getMetricForValidate(); |
| 139 | q.setEnd(""); |
| 140 | q.validateAndSetQuery(); |
| 141 | assertEquals(1357300800000L, q.endTime()); |
| 142 | } |
| 143 | |
| 144 | @Test (expected = IllegalArgumentException.class) |
| 145 | public void validateNullQueries() { |
nothing calls this directly
no test coverage detected