Parse a list of test command passes specified in command line.
(&mut self, passes: &'a [String])
| 1015 | |
| 1016 | /// Parse a list of test command passes specified in command line. |
| 1017 | pub fn parse_cmdline_passes(&mut self, passes: &'a [String]) -> Vec<TestCommand<'a>> { |
| 1018 | let mut list = Vec::new(); |
| 1019 | for pass in passes { |
| 1020 | list.push(TestCommand::new(pass)); |
| 1021 | } |
| 1022 | list |
| 1023 | } |
| 1024 | |
| 1025 | /// Parse a list of test commands. |
| 1026 | pub fn parse_test_commands(&mut self) -> Vec<TestCommand<'a>> { |
no test coverage detected