()
| 130 | } |
| 131 | |
| 132 | @Test |
| 133 | public void getEndTimeNotSet() throws Exception { |
| 134 | PowerMockito.mockStatic(DateTime.class); |
| 135 | PowerMockito.when(DateTime.currentTimeMillis()).thenReturn(1357300800000L); |
| 136 | assertEquals(1357300800000L, query.getEndTime()); |
| 137 | } |
| 138 | |
| 139 | @Test |
| 140 | public void setTimeSeries() throws Exception { |
nothing calls this directly
no test coverage detected