()
| 50 | |
| 51 | #[test] |
| 52 | fn wrong_port_proxy_test() { |
| 53 | let mut cmd = get_selenium_manager(); |
| 54 | let result = cmd |
| 55 | .args([ |
| 56 | "--browser", |
| 57 | "chrome", |
| 58 | "--proxy", |
| 59 | "https:://localhost:1234567", |
| 60 | ]) |
| 61 | .assert() |
| 62 | .try_success(); |
| 63 | |
| 64 | assert_output(&mut cmd, result, vec!["There was an error"], DATAERR); |
| 65 | } |
nothing calls this directly
no test coverage detected