useminilsof::LsofData;#[test]fntest_lsall(){letmut d =LsofData::new();let result = d.file_ls().unwrap();println!("{:?}",result);}#[test]fntest_target(){let filepath ="/usr/lib64/librt-2.28.so".to_string();letmut d =LsofData::new();let result = d.target_file_ls(filepath).unwrap();println!("{:?}",result);}