1 2 3 4 5 6 7 8 9 10
use android_tools::emulator::EmulatorTools; #[test] fn test_emulator() { EmulatorTools::new() .version(true) .help_all(true) .run() .unwrap(); }