Ho implementato il seguente metodo e unit test:
use std::fs::File;
use std::path::Path;
use std::io::prelude::*;
fn read_file(path: &Path) {
let mut file = File::open(path).unwrap();
let mut contents = String::new();
file.read_to_string(&mut contents).unwrap();
println!("{}", contents);
}
#[test]
fn test_read_file() {
let path = &Path::new("/etc/hosts");
println!("{:?}", path);
read_file(path);
}
Eseguo il test dell'unità in questo modo:
rustc --test app.rs; ./app
Potrei anche eseguirlo con
cargo test
Ricevo un messaggio che dice che il test è stato superato ma println!
non viene mai visualizzato sullo schermo. Perchè no?
--nocapture
opzione acargo test
, ma il carico non riconosce questa bandiera per me (usando l'ultima notte da rustup.sh). Sei sicuro che dovrebbe funzionare?