(vec_path: PathBuf)
| 647 | } |
| 648 | #[quickcheck_macros::quickcheck] |
| 649 | fn check_get_components(vec_path: PathBuf) -> TestResult { |
| 650 | init(); |
| 651 | let path = &vec_path; |
| 652 | let result = get_components(path); |
| 653 | TestResult::passed() |
| 654 | } |
| 655 | #[quickcheck_macros::quickcheck] |
| 656 | fn check_addr_matches_netlist_entry( |
| 657 | vec_netlist: Netlist, |
nothing calls this directly
no test coverage detected