MCPcopy Index your code
hub / github.com/endbasic/endbasic / test_locate_ok

Function test_locate_ok

std/src/console/cmds.rs:942–952  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 3

checkMethod · 0.45
expect_outputMethod · 0.45
runMethod · 0.45

Tested by

no test coverage detected