()
| 243 | |
| 244 | #[test] |
| 245 | fn test_semantic_diff_identical() { |
| 246 | let content = b"line1\nline2\nline3\n"; |
| 247 | let diff = semantic_diff(content, content); |
| 248 | assert!(diff.is_unchanged()); |
| 249 | assert!(!diff.has_changes()); |
| 250 | assert!(diff.changes().is_empty()); |
| 251 | } |
| 252 | |
| 253 | #[test] |
| 254 | fn test_semantic_diff_empty() { |
nothing calls this directly
no test coverage detected