()
| 442 | |
| 443 | #[test] |
| 444 | fn plain_format_basic_line() { |
| 445 | let log = make_log("hello world", vec![]); |
| 446 | let result = format_log_line_plain(&log); |
| 447 | assert!(result.starts_with("22:13:20 sandbox INFO hello world")); |
| 448 | assert!(!result.contains('=')); |
| 449 | } |
| 450 | |
| 451 | #[test] |
| 452 | fn plain_format_with_fields() { |
nothing calls this directly
no test coverage detected