()
| 252 | |
| 253 | #[test] |
| 254 | fn test_semantic_diff_empty() { |
| 255 | let diff = semantic_diff(b"", b""); |
| 256 | assert!(diff.is_unchanged()); |
| 257 | assert!(diff.is_empty()); |
| 258 | } |
| 259 | |
| 260 | #[test] |
| 261 | fn test_semantic_diff_add_line() { |
nothing calls this directly
no test coverage detected