use tokio::time::{Duration, sleep};
pub async fn boot() -> String {
sleep(Duration::from_millis(10)).await;
"android ready".to_string()
}
#[cfg(test)]
mod tests {
use super::*;
#[tokio::test]
async fn boots_android_runtime() {
assert_eq!(boot().await, "android ready");
}
}