()
| 44 | |
| 45 | #[test] |
| 46 | fn shell_output_test() { |
| 47 | let mut cmd = get_selenium_manager(); |
| 48 | cmd.args(["--browser", "chrome", "--output", "shell"]) |
| 49 | .assert() |
| 50 | .success() |
| 51 | .code(0); |
| 52 | |
| 53 | let stdout = get_stdout(&mut cmd); |
| 54 | assert!(stdout.contains(DRIVER_PATH)); |
| 55 | } |
| 56 | |
| 57 | #[test] |
| 58 | fn mixed_output_test() { |
nothing calls this directly
no test coverage detected