()
| 940 | |
| 941 | #[test] |
| 942 | fn test_locate_ok() { |
| 943 | Tester::default() |
| 944 | .run("LOCATE 0, 0") |
| 945 | .expect_output([CapturedOut::Locate(CharsXY::default())]) |
| 946 | .check(); |
| 947 | |
| 948 | Tester::default() |
| 949 | .run("LOCATE 63000, 64000") |
| 950 | .expect_output([CapturedOut::Locate(CharsXY::new(63000, 64000))]) |
| 951 | .check(); |
| 952 | } |
| 953 | |
| 954 | #[test] |
| 955 | fn test_locate_errors() { |
nothing calls this directly
no test coverage detected