()
| 524 | |
| 525 | #[test] |
| 526 | fn test_record_empty_message() { |
| 527 | let record = Record::new().with_message(""); |
| 528 | assert_eq!(record.message, Some("".to_string())); |
| 529 | } |
| 530 | |
| 531 | #[test] |
| 532 | fn test_record_unicode_message() { |
nothing calls this directly
no test coverage detected