//! Helper utilities for testing and development.
usecrate::middleware::{CustomDbRow, RowValues};usestd::sync::Arc;/// Create a test row with the given column names and values.
#[must_use]pubfncreate_test_row(column_names:Vec<String>, values:Vec<RowValues>)-> CustomDbRow{CustomDbRow::new(Arc::new(column_names), values)}