()
| 141 | |
| 142 | #[test] |
| 143 | fn rom_image_assembles() { |
| 144 | let rom = generate_rom_image(); |
| 145 | assert!(!rom.is_empty(), "ROM image must be non-empty"); |
| 146 | assert_eq!(rom.len() % 4, 0, "ROM size must be word-aligned"); |
| 147 | } |
| 148 | |
| 149 | // Catches a broken catalog program at test time rather than when the user picks |
| 150 | // it in the GUI. |
nothing calls this directly
no test coverage detected