mod common;
pub use firedbg_rust_parser::*;
pub use pretty_assertions::assert_eq;
#[test]
fn parse_stmt() -> anyhow::Result<()> {
let path = concat!(env!("CARGO_MANIFEST_DIR"), "/tests/common/stmt.rs");
let mut breakpoints = parse_file(path)?;
breakpoints.pop(); assert_eq!(breakpoints, common::stmt::get_breakpoints());
Ok(())
}