(actual: f64, expected: f64)
| 5 | use std::sync::Arc; |
| 6 | |
| 7 | fn assert_close(actual: f64, expected: f64) { |
| 8 | assert!( |
| 9 | (actual - expected).abs() <= 1e-9, |
| 10 | "expected {expected}, got {actual}" |
| 11 | ); |
| 12 | } |
| 13 | |
| 14 | #[test] |
| 15 | fn build_tape_rows_returns_newest_first() { |
no outgoing calls
no test coverage detected