()
| 994 | |
| 995 | #[test] |
| 996 | fn test_word_diff_empty() { |
| 997 | let result = word_diff(b"", b""); |
| 998 | assert!(result.is_empty()); |
| 999 | assert!(!result.has_changes()); |
| 1000 | assert!(result.is_unchanged()); |
| 1001 | } |
| 1002 | |
| 1003 | #[test] |
| 1004 | fn test_word_diff_identical() { |
nothing calls this directly
no test coverage detected