()
| 1056 | |
| 1057 | #[test] |
| 1058 | fn test_inline_diff_content_accessors() { |
| 1059 | let old = b"hello"; |
| 1060 | let new = b"world"; |
| 1061 | let diff = compute_inline_diff(old, new); |
| 1062 | |
| 1063 | assert_eq!(diff.old_content(), old); |
| 1064 | assert_eq!(diff.new_content(), new); |
| 1065 | } |
| 1066 | |
| 1067 | #[test] |
| 1068 | fn test_inline_diff_hunks_cover_entire_line() { |
nothing calls this directly
no test coverage detected