()
| 30 | |
| 31 | #[test] |
| 32 | fn dependencies_reference_valid_feature_ids() { |
| 33 | for &id in FeatureId::ALL { |
| 34 | for &dependency in id.dependencies() { |
| 35 | assert!( |
| 36 | FeatureId::ALL.contains(&dependency), |
| 37 | "{:?} depends on {:?} which is not in ALL", |
| 38 | id, |
| 39 | dependency |
| 40 | ); |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | #[test] |
| 46 | fn dependents_reference_valid_feature_ids() { |
nothing calls this directly
no test coverage detected