(response: &str)
| 2083 | } |
| 2084 | |
| 2085 | fn android_console_response_ok(response: &str) -> bool { |
| 2086 | response.lines().any(|line| line.trim() == "OK") |
| 2087 | && !response |
| 2088 | .lines() |
| 2089 | .any(|line| line.trim_start().starts_with("KO")) |
| 2090 | } |
| 2091 | |
| 2092 | fn parse_android_display_metrics(output: &str) -> Option<AndroidDisplayMetrics> { |
| 2093 | let rotation = parse_android_display_rotation(output).unwrap_or(0); |
no outgoing calls
no test coverage detected