()
| 1254 | |
| 1255 | #[test] |
| 1256 | fn test_result_clone() { |
| 1257 | let mut result = DetectResult::new(); |
| 1258 | result.add_change(FileChange::added("test.rs", Encoding::Utf8)); |
| 1259 | |
| 1260 | let cloned = result.clone(); |
| 1261 | |
| 1262 | assert_eq!(result.change_count(), cloned.change_count()); |
| 1263 | } |
| 1264 | |
| 1265 | #[test] |
| 1266 | fn test_result_debug() { |
nothing calls this directly
no test coverage detected