Validates suite metadata that cannot be enforced by TOML deserialization.
(&self)
| 221 | |
| 222 | /// Validates suite metadata that cannot be enforced by TOML deserialization. |
| 223 | fn validate(&self) -> Result<()> { |
| 224 | self.validate_suite_fields()?; |
| 225 | self.validate_options() |
| 226 | } |
| 227 | |
| 228 | /// Validates required suite-level fields. |
| 229 | fn validate_suite_fields(&self) -> Result<()> { |
no test coverage detected