the the build directory of the library under test.
(&self)
| 173 | |
| 174 | /// the the build directory of the library under test. |
| 175 | pub fn get_library_build_dir(&self) -> Result<PathBuf> { |
| 176 | let build_dir: PathBuf = [ |
| 177 | Deopt::get_crate_build_dir()?, |
| 178 | self.config.project_name.clone().into(), |
| 179 | ] |
| 180 | .iter() |
| 181 | .collect(); |
| 182 | utils::create_dir_if_nonexist(&build_dir)?; |
| 183 | Ok(build_dir) |
| 184 | } |
| 185 | |
| 186 | /// get the library's gadget path. |
| 187 | pub fn get_library_gadget_path(&self) -> Result<PathBuf> { |
no test coverage detected