(tests: impl IntoIterator<Item = Test<V>>)
| 181 | V: Delete<Value = V> + Clone + PartialEq + fmt::Display + fmt::Debug, |
| 182 | { |
| 183 | fn all(tests: impl IntoIterator<Item = Test<V>>) { |
| 184 | tests.into_iter().enumerate().for_each(|(i, t)| t.run(i)); |
| 185 | } |
| 186 | fn run(self, _i: usize) { |
| 187 | let Test { |
| 188 | mut data, |
no test coverage detected