(&self)
| 213 | } |
| 214 | |
| 215 | pub fn get_library_api_cov_dump_path(&self) -> Result<PathBuf> { |
| 216 | let save_path: PathBuf = [self.get_library_misc_dir()?, "api_coverages.json".into()] |
| 217 | .iter() |
| 218 | .collect(); |
| 219 | Ok(save_path) |
| 220 | } |
| 221 | |
| 222 | /// get the output directory of the library under test. |
| 223 | pub fn get_library_output_dir(&self) -> Result<PathBuf> { |
no test coverage detected