Add a test to be executed later. Any problems reading `file` as a test case file will be reported as a test failure.
(&mut self, file: P)
| 108 | /// |
| 109 | /// Any problems reading `file` as a test case file will be reported as a test failure. |
| 110 | pub fn push_test<P: Into<PathBuf>>(&mut self, file: P) { |
| 111 | self.tests.push(QueueEntry { |
| 112 | path: file.into(), |
| 113 | state: State::New, |
| 114 | }); |
| 115 | } |
| 116 | |
| 117 | /// Begin running tests concurrently. |
| 118 | pub fn start_threads(&mut self) { |
no test coverage detected