()
| 177 | } |
| 178 | |
| 179 | @Test (expected = IllegalArgumentException.class) |
| 180 | public void testHashCodeandEqualsStartNull() { |
| 181 | TSQuery sub1 = getMetricForValidate(); |
| 182 | |
| 183 | final int hash_a = sub1.hashCode(); |
| 184 | sub1.setStart(null); |
| 185 | assertTrue(hash_a != sub1.hashCode()); |
| 186 | sub1.validateAndSetQuery(); |
| 187 | } |
| 188 | |
| 189 | @Test (expected = IllegalArgumentException.class) |
| 190 | public void testHashCodeandEqualsStartInvalid() { |
nothing calls this directly
no test coverage detected