()
| 1275 | |
| 1276 | #[test] |
| 1277 | fn test_result_has_errors() { |
| 1278 | let mut result = TreeCollectResult::new(); |
| 1279 | assert!(!result.has_errors()); |
| 1280 | |
| 1281 | result.record_error("test.rs".to_string(), "error".to_string()); |
| 1282 | assert!(result.has_errors()); |
| 1283 | } |
| 1284 | |
| 1285 | #[test] |
| 1286 | fn test_result_files_iterator() { |
nothing calls this directly
no test coverage detected