(#[case] command: &str, #[case] names: &[&str])
| 40 | #[case("mvn test", &["gradle", "java", "maven", "mvn"])] |
| 41 | #[case("./java -jar bench.jar", &["java"])] |
| 42 | fn matches(#[case] command: &str, #[case] names: &[&str]) { |
| 43 | assert!(command_has_executable(command, names)); |
| 44 | } |
| 45 | |
| 46 | #[rstest] |
| 47 | #[case("javascript-runtime run", &["java"])] |
nothing calls this directly
no outgoing calls
no test coverage detected