get the data directory of the library under test.
(&self)
| 165 | |
| 166 | /// get the data directory of the library under test. |
| 167 | pub fn get_library_data_dir(&self) -> Result<PathBuf> { |
| 168 | let data_dir: PathBuf = [Deopt::get_crate_dir()?, "libraries", &self.project_name] |
| 169 | .iter() |
| 170 | .collect(); |
| 171 | Ok(data_dir) |
| 172 | } |
| 173 | |
| 174 | /// the the build directory of the library under test. |
| 175 | pub fn get_library_build_dir(&self) -> Result<PathBuf> { |
no outgoing calls
no test coverage detected