()
| 343 | |
| 344 | #[test] |
| 345 | fn test_bound_integration() { |
| 346 | Tester::default() |
| 347 | .run("DIM x(5): FOR i = LBOUND(x) TO UBOUND(x): x(i) = i * 2: NEXT") |
| 348 | .expect_var("i", 5i32) |
| 349 | .expect_array_simple( |
| 350 | "x", |
| 351 | ExprType::Integer, |
| 352 | vec![0i32.into(), 2i32.into(), 4i32.into(), 6i32.into(), 8i32.into()], |
| 353 | ) |
| 354 | .check(); |
| 355 | } |
| 356 | } |
nothing calls this directly
no test coverage detected