(log_files: String)
| 16 | |
| 17 | impl BenchmarkEngine { |
| 18 | pub fn new(log_files: String) -> Self { |
| 19 | return Self { |
| 20 | permutations: vec![], |
| 21 | results: vec![], |
| 22 | log_files_directory: log_files, |
| 23 | }; |
| 24 | } |
| 25 | |
| 26 | pub fn run(&mut self) { |
| 27 | let runtime = SystemTime::now(); |
nothing calls this directly
no outgoing calls
no test coverage detected