()
| 1064 | |
| 1065 | #[test] |
| 1066 | fn test_word_diff_edit_distance() { |
| 1067 | let result = word_diff(b"a b c", b"a x c"); |
| 1068 | assert!(result.edit_distance() > 0); |
| 1069 | } |
| 1070 | |
| 1071 | #[test] |
| 1072 | fn test_word_diff_tokens_in_range() { |
nothing calls this directly
no test coverage detected