()
| 5 | |
| 6 | #[test] |
| 7 | fn parse_nested_fn() -> anyhow::Result<()> { |
| 8 | let path = concat!(env!("CARGO_MANIFEST_DIR"), "/tests/common/nested_fn.rs"); |
| 9 | let mut breakpoints = parse_file(path)?; |
| 10 | breakpoints.pop(); // Pop the last `fn get_breakpoints` breakpoint |
| 11 | assert_eq!(breakpoints, common::nested_fn::get_breakpoints()); |
| 12 | Ok(()) |
| 13 | } |
nothing calls this directly
no test coverage detected