(response: &str)
| 2077 | } |
| 2078 | |
| 2079 | fn android_console_response_complete(response: &str) -> bool { |
| 2080 | response |
| 2081 | .lines() |
| 2082 | .any(|line| line.trim() == "OK" || line.trim_start().starts_with("KO")) |
| 2083 | } |
| 2084 | |
| 2085 | fn android_console_response_ok(response: &str) -> bool { |
| 2086 | response.lines().any(|line| line.trim() == "OK") |
no outgoing calls
no test coverage detected