()
| 215 | |
| 216 | #[test] |
| 217 | fn roundtrip_many() { |
| 218 | roundtrip(&[(0, 4, &[0])]); |
| 219 | roundtrip(&[ |
| 220 | (0, 4, &[0]), |
| 221 | (4, 200, &[0, 4, 20, 180]), |
| 222 | (200, 20, &[12]), |
| 223 | (600, 0, &[]), |
| 224 | (800, 20, &[0, 4, 8, 12, 16]), |
| 225 | (1200, 2000, &[1800, 1804, 1808, 1900]), |
| 226 | ]); |
| 227 | } |
| 228 | } |
nothing calls this directly
no test coverage detected