(&self)
| 109 | |
| 110 | #[must_use] |
| 111 | pub fn calls(&self) -> Vec<FakeComputeDriverCall> { |
| 112 | self.with_state(|state| state.calls.clone()) |
| 113 | } |
| 114 | |
| 115 | pub fn clear_calls(&self) { |
| 116 | self.with_state(|state| state.calls.clear()); |
nothing calls this directly
no test coverage detected