()
| 996 | |
| 997 | #[test] |
| 998 | fn test_inline_diff_empty() { |
| 999 | let diff = compute_inline_diff(b"", b""); |
| 1000 | assert!(!diff.has_changes()); |
| 1001 | assert!(diff.is_unchanged()); |
| 1002 | } |
| 1003 | |
| 1004 | #[test] |
| 1005 | fn test_inline_diff_identical() { |
nothing calls this directly
no test coverage detected