()
| 431 | } |
| 432 | |
| 433 | @Test (expected = IllegalArgumentException.class) |
| 434 | public void getDurationIntervalTooBig() { |
| 435 | long value = Integer.MAX_VALUE; |
| 436 | value++; |
| 437 | DateTime.getDurationInterval(Long.toString(value) + "s"); |
| 438 | } |
| 439 | |
| 440 | @Test (expected = IllegalArgumentException.class) |
| 441 | public void getDurationIntervalNegative() { |
nothing calls this directly
no test coverage detected