()
| 1495 | } |
| 1496 | |
| 1497 | @Test |
| 1498 | public void testToString() { |
| 1499 | downsampler = new Downsampler(source, THOUSAND_SEC_INTERVAL, AVG); |
| 1500 | DataPoint dp = downsampler.next(); |
| 1501 | assertTrue(downsampler.toString().contains(dp.toString())); |
| 1502 | } |
| 1503 | } |