def test_render_unsupported_instructions(self) -> None:
     block = InstructionBlock()
     block.add_instruction_stop()
     plotter = Plotter()
     with self.assertRaises(NotImplementedError):
         plotter.render(block)