()
| 395 | |
| 396 | #[test] |
| 397 | fn uses_explicit_scale_factor_when_provided() -> Result<()> { |
| 398 | let scale_factor = |
| 399 | resolve_scale_factor(Some(30.0), Path::new("benchmarks/data/tpch_sf10"))?; |
| 400 | assert_eq!(scale_factor, 30.0); |
| 401 | Ok(()) |
| 402 | } |
| 403 | |
| 404 | #[test] |
| 405 | fn infers_scale_factor_from_standard_tpch_path() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…