()
| 122 | } |
| 123 | |
| 124 | @Test |
| 125 | public void validateNullEnd() { |
| 126 | PowerMockito.mockStatic(System.class); |
| 127 | when(System.currentTimeMillis()).thenReturn(1357300800000L); |
| 128 | TSQuery q = this.getMetricForValidate(); |
| 129 | q.setEnd(null); |
| 130 | q.validateAndSetQuery(); |
| 131 | assertEquals(1357300800000L, q.endTime()); |
| 132 | } |
| 133 | |
| 134 | @Test |
| 135 | public void validateEmptyEnd() { |
nothing calls this directly
no test coverage detected