(case: &Case)
| 23 | } |
| 24 | |
| 25 | fn dependencies(case: &Case) -> HashSet<Aid> { |
| 26 | let mut deps = HashSet::new(); |
| 27 | |
| 28 | for binding in case.plan.into_bindings().iter() { |
| 29 | if let Binding::Attribute(binding) = binding { |
| 30 | deps.insert(binding.source_attribute.clone()); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | deps |
| 35 | } |
| 36 | |
| 37 | fn run_cases(mut cases: Vec<Case>) { |
| 38 | for case in cases.drain(..) { |
no test coverage detected