(self, compile_command: impl Into<String>)
| 426 | } |
| 427 | |
| 428 | pub fn with_compile_command(self, compile_command: impl Into<String>) -> Self { |
| 429 | TestBuilder { |
| 430 | compile_command: Some(compile_command.into()), |
| 431 | ..self |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | pub fn with_run_command(self, run_command: impl Into<String>) -> Self { |
| 436 | TestBuilder { |
no outgoing calls