#[test]
fn test_row_id_order() {
let mut hooks = re_chunk::BatcherHooks::NONE;
hooks.on_insert = Some(std::sync::Arc::new(|rows| {
if let [.., penultimate, ultimate] = rows {
assert!(
penultimate.row_id <= ultimate.row_id,
"Rows coming to batcher out-of-order"
);
}
}));
let (rec, _mem_storage) = rerun::RecordingStreamBuilder::new("rerun_example_test")
.batcher_hooks(hooks)
.memory()
.unwrap();
for _ in 0..10 {
rec.log(
"foo",
&rerun::Points2D::new([(1.0, 2.0), (3.0, 4.0)]).with_radii([1.0]),
)
.unwrap();
}
}