()
| 457 | |
| 458 | #[test] |
| 459 | fn test_null_value_handling() { |
| 460 | let handler = ValueHandler::new(); |
| 461 | let null_value = SqliteValue::Null; |
| 462 | |
| 463 | let result = handler.convert_value(&null_value, 25, false).unwrap(); |
| 464 | assert!(result.is_none()); |
| 465 | } |
| 466 | |
| 467 | #[test] |
| 468 | fn test_row_conversion() { |
nothing calls this directly
no test coverage detected