()
| 723 | |
| 724 | #[test] |
| 725 | fn test_split_format_simple() { |
| 726 | let compiler = FormatCompiler::new(false); |
| 727 | let parts = compiler.split_format("Hello {}!"); |
| 728 | assert_eq!(parts.len(), 3); // "Hello ", field, "!" |
| 729 | } |
| 730 | |
| 731 | #[test] |
| 732 | fn test_split_format_named() { |
nothing calls this directly
no test coverage detected