4
Neden println! birim testlerinde ne işe yarar?
Aşağıdaki yöntemi ve birim testini uyguladım: 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); } Birim testini şu şekilde çalıştırıyorum: rustc --test …