Add a solution to be returned by the mock solver.
(mut self, solution: Solution)
| 846 | |
| 847 | /// Add a solution to be returned by the mock solver. |
| 848 | pub fn solution(mut self, solution: Solution) -> Self { |
| 849 | self.solutions.push(solution); |
| 850 | self |
| 851 | } |
| 852 | |
| 853 | pub fn solvers(mut self, solvers: Vec<Solver>) -> Self { |
| 854 | self.solvers = solvers; |
no test coverage detected