()
| 900 | |
| 901 | #[test] |
| 902 | fn test_diff_with_algorithm() { |
| 903 | let diff = Diff::new().with_algorithm("patience"); |
| 904 | assert_eq!(diff.algorithm, "patience"); |
| 905 | } |
| 906 | |
| 907 | #[test] |
| 908 | fn test_diff_with_context() { |
nothing calls this directly
no test coverage detected