()
| 672 | |
| 673 | #[test] |
| 674 | fn test_sdl_console_leave_alt() { |
| 675 | let mut test = SdlTest::default(); |
| 676 | |
| 677 | test.console().print("Before entering the alternate console").unwrap(); |
| 678 | test.console().enter_alt().unwrap(); |
| 679 | test.console().print("After entering the alternate console").unwrap(); |
| 680 | test.console().leave_alt().unwrap(); |
| 681 | |
| 682 | test.verify("sdl/src", "sdl-leave-alt"); |
| 683 | } |
| 684 | |
| 685 | #[test] |
| 686 | fn test_sdl_console_alt_colors() { |