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