()
| 1200 | |
| 1201 | #[test] |
| 1202 | fn test_word_diff_str() { |
| 1203 | let result = word_diff_str("hello world", "hello there"); |
| 1204 | assert!(result.has_changes()); |
| 1205 | } |
| 1206 | |
| 1207 | #[test] |
| 1208 | fn test_word_diff_str_identical() { |
nothing calls this directly
no test coverage detected