(mut self, file: impl TestFile + 'static)
| 69 | } |
| 70 | |
| 71 | pub fn with_file(mut self, file: impl TestFile + 'static) -> Self { |
| 72 | self.files.push(Box::new(file)); |
| 73 | self |
| 74 | } |
| 75 | |
| 76 | pub fn with_responses(mut self, responses: MockResponseStreams) -> Self { |
| 77 | for response in responses { |
no outgoing calls
no test coverage detected