()
| 43 | |
| 44 | #[test] |
| 45 | fn test_deserialize_empty_config() { |
| 46 | let yaml = r#"{}"#; |
| 47 | let config: ProjectConfig = serde_yaml::from_str(yaml).unwrap(); |
| 48 | assert!(config.options.is_none()); |
| 49 | } |
| 50 | |
| 51 | #[test] |
| 52 | fn test_validate_conflicting_min_time_max_rounds() { |
nothing calls this directly
no outgoing calls
no test coverage detected