Finished test [unoptimized + debuginfo] target(s) in 0.03s Running tests/simple_tests.rs (/Applications/MAMP/htdocs/FireDBG.for.Rust.Internal/parser/tests/example-workspace/target/debug/deps/simple_tests-69a7a6c625a5bad6) main: test main2: test 2 tests, 0 benchmarks
(&self, package: &Package)
| 337 | // |
| 338 | // 2 tests, 0 benchmarks |
| 339 | pub fn get_testcases(&self, package: &Package) -> Result<Vec<String>> { |
| 340 | let output = self |
| 341 | .get_run_cmd(package) |
| 342 | .arg("--color") |
| 343 | .arg("always") |
| 344 | .arg("--") |
| 345 | .arg("--list") |
| 346 | .output()?; |
| 347 | if !output.status.success() { |
| 348 | eprint!("{}", std::str::from_utf8(&output.stderr)?); |
| 349 | std::process::exit(1); |
| 350 | } |
| 351 | let stdout = String::from_utf8(output.stdout)?; |
| 352 | Ok(parse_test_testcases(stdout)) |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | impl Example { |
no test coverage detected