()
| 753 | |
| 754 | #[test] |
| 755 | fn test_diff_identical() { |
| 756 | let text = b"line1\nline2\nline3\n"; |
| 757 | let result = diff_text(text, text, Algorithm::Myers); |
| 758 | assert!(result.is_unchanged()); |
| 759 | } |
| 760 | |
| 761 | #[test] |
| 762 | fn test_diff_empty() { |
nothing calls this directly
no test coverage detected