Validates required suite-level fields.
(&self)
| 227 | |
| 228 | /// Validates required suite-level fields. |
| 229 | fn validate_suite_fields(&self) -> Result<()> { |
| 230 | if self.name.trim().is_empty() { |
| 231 | return Err(DataFusionError::Configuration( |
| 232 | "suite name cannot be empty".to_string(), |
| 233 | )); |
| 234 | } |
| 235 | |
| 236 | Ok(()) |
| 237 | } |
| 238 | |
| 239 | /// Validates suite-defined option declarations. |
| 240 | fn validate_options(&self) -> Result<()> { |