Finished test [unoptimized + debuginfo] target(s) in 0.02s Executable unittests src/lib.rs (target/debug/deps/quick_sort-c42cff5519f79ed2)
(&self)
| 215 | // Finished test [unoptimized + debuginfo] target(s) in 0.02s |
| 216 | // Executable unittests src/lib.rs (target/debug/deps/quick_sort-c42cff5519f79ed2) |
| 217 | pub fn build_unit_test(&self) -> Result<Output> { |
| 218 | let output = self |
| 219 | .get_unit_test_cmd() |
| 220 | .arg("--no-run") |
| 221 | .stderr(Stdio::inherit()) |
| 222 | .output()?; |
| 223 | Ok(output) |
| 224 | } |
| 225 | |
| 226 | /// Get path of unit test executable. |
| 227 | /// |
no test coverage detected