Fake provider that returns a canned list — lets us test the snapshot builder end-to-end without spinning up a real `MultiRaft`.
| 210 | /// snapshot builder end-to-end without spinning up a real |
| 211 | /// `MultiRaft`. |
| 212 | struct FakeProvider(Vec<GroupStatus>); |
| 213 | impl GroupStatusProvider for FakeProvider { |
| 214 | fn group_statuses(&self) -> Vec<GroupStatus> { |
| 215 | self.0.clone() |