()
| 68 | |
| 69 | #[test] |
| 70 | fn ir_output_contains_function_name() { |
| 71 | let src = "add: (a: i32, b: i32) -> i32 { return a + b }"; |
| 72 | let ir = hll_to_ir_text(src); |
| 73 | assert!( |
| 74 | ir.contains("add"), |
| 75 | "IR should contain the function name 'add'" |
| 76 | ); |
| 77 | } |
| 78 | |
| 79 | #[test] |
| 80 | fn ir_output_contains_math_op() { |
nothing calls this directly
no test coverage detected