()
| 109 | |
| 110 | #[test] |
| 111 | fn test_record_with_message() { |
| 112 | let record = Record::new().with_message("Test message"); |
| 113 | assert_eq!(record.message, Some("Test message".to_string())); |
| 114 | } |
| 115 | |
| 116 | #[test] |
| 117 | fn test_record_with_all() { |
nothing calls this directly
no test coverage detected