()
| 236 | } |
| 237 | |
| 238 | @Test (expected = IllegalArgumentException.class) |
| 239 | public void testHashCodeandEqualsEndInvalid() { |
| 240 | TSQuery sub1 = getMetricForValidate(); |
| 241 | |
| 242 | final int hash_a = sub1.hashCode(); |
| 243 | sub1.setEnd("1356998300"); |
| 244 | assertTrue(hash_a != sub1.hashCode()); |
| 245 | sub1.validateAndSetQuery(); |
| 246 | } |
| 247 | |
| 248 | @Test |
| 249 | public void testHashCodeandEqualsTimezone() { |
nothing calls this directly
no test coverage detected