()
| 530 | |
| 531 | #[test] |
| 532 | fn test_record_unicode_message() { |
| 533 | let record = Record::new().with_message("添加新功能 🚀"); |
| 534 | assert_eq!(record.message, Some("添加新功能 🚀".to_string())); |
| 535 | } |
| 536 | |
| 537 | #[test] |
| 538 | fn test_record_multiline_message() { |
nothing calls this directly
no test coverage detected